| OLD | NEW |
| 1 +++++++++++ | 1 +++++++++++ |
| 2 Python News | 2 Python News |
| 3 +++++++++++ | 3 +++++++++++ |
| 4 | 4 |
| 5 (editors: check NEWS.help for information about editing NEWS using ReST.) | 5 (editors: check NEWS.help for information about editing NEWS using ReST.) |
| 6 | 6 |
| 7 What's New in Python 3.0 release candidate 2 | 7 What's New in Python 3.0 beta 5 |
| 8 ============================================ | 8 =============================== |
| 9 |
| 10 [Note: due to the number of unresolved issues we're going back to beta |
| 11 releases for a while.] |
| 9 | 12 |
| 10 *Release date: XX-XXX-2008* | 13 *Release date: XX-XXX-2008* |
| 11 | 14 |
| 12 Core and Builtins | 15 Core and Builtins |
| 13 ----------------- | 16 ----------------- |
| 14 | 17 |
| 15 - Issue #3946: PyObject_CheckReadBuffer crashed on a memoryview object. | 18 - Issue #3946: PyObject_CheckReadBuffer crashed on a memoryview object. |
| 16 | 19 |
| 17 - Issue #1688: On Windows, the input() prompt was not correctly displayed if it | 20 - Issue #1688: On Windows, the input() prompt was not correctly displayed if it |
| 18 contains non-ascii characters. | 21 contains non-ascii characters. |
| 19 | 22 |
| 20 - Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default. | 23 - Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default. |
| 21 | 24 |
| 22 Library | 25 Library |
| 23 ------- | 26 ------- |
| 27 |
| 28 - Issue #3187: Better support for "undecodable" filenames. Code by Victor |
| 29 Stinner, with small tweaks by GvR. |
| 24 | 30 |
| 25 - Issue #3965: Allow repeated calls to turtle.Screen, by making it a | 31 - Issue #3965: Allow repeated calls to turtle.Screen, by making it a |
| 26 true singleton object. | 32 true singleton object. |
| 27 | 33 |
| 28 - Issue #3911: ftplib.FTP.makeport() could give invalid port numbers. | 34 - Issue #3911: ftplib.FTP.makeport() could give invalid port numbers. |
| 29 | 35 |
| 30 - Issue #3929: When the database cannot be opened, dbm.open() would incorrectly | 36 - Issue #3929: When the database cannot be opened, dbm.open() would incorrectly |
| 31 raise a TypeError: "'tuple' object is not callable" instead of the expected | 37 raise a TypeError: "'tuple' object is not callable" instead of the expected |
| 32 dbm.error. | 38 dbm.error. |
| 33 | 39 |
| (...skipping 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1179 | 1185 |
| 1180 - Support for BeOS and AtheOS was removed (according to PEP 11). | 1186 - Support for BeOS and AtheOS was removed (according to PEP 11). |
| 1181 | 1187 |
| 1182 - Support for RiscOS, Irix, Tru64 was removed (alledgedly). | 1188 - Support for RiscOS, Irix, Tru64 was removed (alledgedly). |
| 1183 | 1189 |
| 1184 Tools/Demos | 1190 Tools/Demos |
| 1185 ----------- | 1191 ----------- |
| 1186 | 1192 |
| 1187 | 1193 |
| 1188 **(For information about older versions, consult the HISTORY file.)** | 1194 **(For information about older versions, consult the HISTORY file.)** |
| OLD | NEW |