summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-01-24 22:59:25 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-01-24 22:59:25 (GMT)
commit31eaafef4a710b657133bbf206e9d9c42c8841d9 (patch)
treea17e917bd822e42084f6da8e73c8b9c6231f6191 /Misc
parent16570f59caecde43b13b0e5f4c9328e4ceded544 (diff)
downloadcpython-31eaafef4a710b657133bbf206e9d9c42c8841d9.zip
cpython-31eaafef4a710b657133bbf206e9d9c42c8841d9.tar.gz
cpython-31eaafef4a710b657133bbf206e9d9c42c8841d9.tar.bz2
News entry for r60265 (Issue 1920).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 6 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9b625fd..f2a6f77 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).