@@ -952,8 +952,7 @@ _tkinter.createfilehandler().
952952- The truncate() method for file objects now works on Windows.
953953
954954- Py_Initialize() is no longer called when the DLL is loaded. You
955- must call it yourself. (And you can't call it twice -- it's a fatal
956- error to call it when Python is already initialized.)
955+ must call it yourself.
957956
958957- The time module's clock() function now has good precision through
959958the use of the Win32 API QueryPerformanceCounter().
@@ -1101,8 +1100,6 @@ file to buildno1.
11011100- Moved Include/assert.h to Parser/assert.h, which seems to be the
11021101only place where it's needed.
11031102
1104- - Alas, the thread support for _tkinter didn't work. Withdrew it.
1105-
11061103- Tweaked the dictionary lookup code again for some more speed
11071104(Vladimir Marangozov).
11081105
@@ -1263,11 +1260,12 @@ using sys.exc_info().
12631260Also, the command argument can now be either a string (passed to the
12641261shell) or a list of arguments (passed directly to execv).
12651262
1266- - The thread support for _tkinter.c now works. The bad news is that
1267- it requires a modified version of a file in the standard Tcl
1268- distribution, which you must compile with a -I option pointing to the
1269- standard Tcl source tree. For this reason, the thread support is
1270- disabled by default.
1263+
1264+ - Alas, the thread support for _tkinter released with 1.5a3 didn't
1265+ work. It's been rewritten. The bad news is that it now requires a
1266+ modified version of a file in the standard Tcl distribution, which you
1267+ must compile with a -I option pointing to the standard Tcl source
1268+ tree. For this reason, the thread support is disabled by default.
12711269
12721270- The errno extension module adds two tables: errorcode maps errno
12731271numbers to errno names (e.g. EINTR), and errorcode maps them to
@@ -1336,7 +1334,7 @@ default.
13361334- The imp module now supports parts of the functionality to implement
13371335import of hierarchical module names. It now supports find_module()
13381336and load_module() for all types of modules. Docstrings have been
1339- added for those functions in the built-in impo module that are still
1337+ added for those functions in the built-in imp module that are still
13401338relevant (some old interfaces are obsolete). For a sample
13411339implementation of hierarchical module import in Python, see the new
13421340library module knee.py.
@@ -1358,8 +1356,6 @@ others are PyObject*s).
13581356- The 'p' format in the struct extension module alloded to above is
13591357new in 1.5a4.
13601358
1361- - The xlib extension module has been debugged and improved.
1362-
13631359- The types.py module now uses try-except in a few places to make it
13641360more likely that it can be imported in restricted mode. Some type
13651361names are undefined in that case, e.g. CodeType (inaccessible),
@@ -1409,11 +1405,18 @@ Adding support for a new OS is now a bit more work, but I bet that
14091405
14101406- Tools/faqwiz/: New installation instructions show how to maintain
14111407multiple FAQs. Removed bootstrap script from end of faqwiz.py module.
1412- Added instructions to bootstrap script, too. Version bumped to 0.8.
1408+ Added instructions to bootstrap script, too. Version bumped to 0.8.1.
14131409Added <html>...</html> feature suggested by Skip Montanaro. Added
14141410leading text for Roulette, default to 'Hit Reload ...'. Fix typo in
14151411default SRCDIR.
14161412
14171413- Documentation for the relatively new modules "keyword" and "symbol"
14181414has been added (to the end of the section on the parser extension
14191415module).
1416+
1417+ - In module bisect.py, but functions have two optional argument 'lo'
1418+ and 'hi' which allow you to specify a subsequence of the array to
1419+ operate on.
1420+
1421+ - In ftplib.py, changed most methods to return their status (even when
1422+ it is always "200 OK") rather than swallowing it.
0 commit comments