| OLD | NEW |
| 1 +++++++++++ | 1 +++++++++++ |
| 2 Python News | 2 Python News |
| 3 +++++++++++ | 3 +++++++++++ |
| 4 | 4 |
| 5 What's New in Python 3.3.0 Alpha 2? | 5 What's New in Python 3.3.0 Alpha 2? |
| 6 =================================== | 6 =================================== |
| 7 | 7 |
| 8 *Release date: XXXX-XX-XX* | 8 *Release date: XXXX-XX-XX* |
| 9 | 9 |
| 10 Core and Builtins | 10 Core and Builtins |
| 11 ----------------- | 11 ----------------- |
| 12 |
| 13 - Issue #8070: Make PyRun_InteractiveLoopFlags() return an error if |
| 14 PyRun_InteractiveRunFlags(), rather than entering an infinite loop. |
| 12 | 15 |
| 13 - Issue #1469629: Allow cycles through an object's __dict__ slot to be | 16 - Issue #1469629: Allow cycles through an object's __dict__ slot to be |
| 14 collected. (For example if ``x.__dict__ is x``). | 17 collected. (For example if ``x.__dict__ is x``). |
| 15 | 18 |
| 16 - Issue #14205: dict lookup raises a RuntimeError if the dict is modified | 19 - Issue #14205: dict lookup raises a RuntimeError if the dict is modified |
| 17 during a lookup. | 20 during a lookup. |
| 18 | 21 |
| 19 - Issue #14220: When a generator is delegating to another iterator with the | 22 - Issue #14220: When a generator is delegating to another iterator with the |
| 20 yield from syntax, it needs to have its ``gi_running`` flag set to True. | 23 yield from syntax, it needs to have its ``gi_running`` flag set to True. |
| 21 | 24 |
| (...skipping 7804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7826 from test support, which does the conversion. | 7829 from test support, which does the conversion. |
| 7827 | 7830 |
| 7828 - Issue #5083: New 'gui' resource for regrtest. | 7831 - Issue #5083: New 'gui' resource for regrtest. |
| 7829 | 7832 |
| 7830 | 7833 |
| 7831 Docs | 7834 Docs |
| 7832 ---- | 7835 ---- |
| 7833 | 7836 |
| 7834 | 7837 |
| 7835 **(For information about older versions, consult the HISTORY file.)** | 7838 **(For information about older versions, consult the HISTORY file.)** |
| OLD | NEW |