summaryrefslogtreecommitdiffstats
path: root/Python/import.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-08-04 05:12:19 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-08-04 05:12:19 (GMT)
commit9a70f95ee84007d1aef64fd89e1168dba2ae2b83 (patch)
treeb5485b5d03061980c3d5afc80a5e585a2500e335 /Python/import.c
parent0cbd805a10b91f803bccbb5a54f8e54c2e40e9e8 (diff)
downloadcpython-9a70f95ee84007d1aef64fd89e1168dba2ae2b83.zip
cpython-9a70f95ee84007d1aef64fd89e1168dba2ae2b83.tar.gz
cpython-9a70f95ee84007d1aef64fd89e1168dba2ae2b83.tar.bz2
There were really two issues
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index 7c948cd..8ed34bf 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -62,7 +62,8 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *);
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))