diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-01-24 22:59:25 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-01-24 22:59:25 (GMT) |
commit | 31eaafef4a710b657133bbf206e9d9c42c8841d9 (patch) | |
tree | a17e917bd822e42084f6da8e73c8b9c6231f6191 /Misc | |
parent | 16570f59caecde43b13b0e5f4c9328e4ceded544 (diff) | |
download | cpython-31eaafef4a710b657133bbf206e9d9c42c8841d9.zip cpython-31eaafef4a710b657133bbf206e9d9c42c8841d9.tar.gz cpython-31eaafef4a710b657133bbf206e9d9c42c8841d9.tar.bz2 |
News entry for r60265 (Issue 1920).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -+++++++++++ ++++++++++++ Python News +++++++++++ @@ -12,6 +12,11 @@ What's New in Python 2.6 alpha 1? Core and builtins ----------------- +- Issue #1920: "while 0" statements were completely removed by the compiler, + even in the presence of an "else" clause, which is supposed to be run when + the condition is false. Now the compiler correctly emits bytecode for the + "else" suite. + - A few crashers fixed: weakref_in_del.py (issue #1377858); loosing_dict_ref.py (issue #1303614, test67.py); borrowed_ref_[34].py (not in tracker). |