[Python-checkins] r51082 - python/trunk/Python/import.c

neal.norwitz python-checkins at python.org
Fri Aug 4 07:12:19 CEST 2006


Author: neal.norwitz
Date: Fri Aug  4 07:12:19 2006
New Revision: 51082

Modified:
   python/trunk/Python/import.c
Log:
There were really two issues

Modified: python/trunk/Python/import.c
==============================================================================
--- python/trunk/Python/import.c	(original)
+++ python/trunk/Python/import.c	Fri Aug  4 07:12:19 2006
@@ -62,7 +62,8 @@
        Python 2.5a0: 62092 (changed WITH_CLEANUP opcode)
        Python 2.5b3: 62101 (fix wrong code: for x, in ...)
        Python 2.5b3: 62111 (fix wrong code: x += yield)
-       Python 2.5c1: 62121 (fix wrong lnotab with for loops)
+       Python 2.5c1: 62121 (fix wrong lnotab with for loops and
+       			    storing constants that should have been removed)
 .
 */
 #define MAGIC (62121 | ((long)'\r'<<16) | ((long)'\n'<<24))


More information about the Python-checkins mailing list