[Python-checkins] r60266 - python/trunk/Misc/NEWS

amaury.forgeotdarc python-checkins at python.org
Thu Jan 24 23:59:26 CET 2008


Author: amaury.forgeotdarc
Date: Thu Jan 24 23:59:25 2008
New Revision: 60266

Modified:
   python/trunk/Misc/NEWS
Log:
News entry for r60265 (Issue 1920).


Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Thu Jan 24 23:59:25 2008
@@ -1,4 +1,4 @@
-+++++++++++
++++++++++++
 Python News
 +++++++++++
 
@@ -12,6 +12,11 @@
 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).


More information about the Python-checkins mailing list