diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-06-30 04:59:17 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-06-30 04:59:17 (GMT) |
commit | 9262b8ab1fc49b1beb36bbcd60efc7946e770cd5 (patch) | |
tree | 0a545705a84921c5b8d0edb5afcd8a96b8604380 /Python | |
parent | 2a2c218525f148011d3308ffbecfec1e0c2859a7 (diff) | |
download | cpython-9262b8ab1fc49b1beb36bbcd60efc7946e770cd5.zip cpython-9262b8ab1fc49b1beb36bbcd60efc7946e770cd5.tar.gz cpython-9262b8ab1fc49b1beb36bbcd60efc7946e770cd5.tar.bz2 |
another typo caught by Rob Hooft
Diffstat (limited to 'Python')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index c224752..a23b71b 100644 --- a/Python/import.c +++ b/Python/import.c @@ -87,7 +87,7 @@ extern long PyOS_GetLastModificationTime(); /* In getmtime.c */ #define MAGIC (50428 | ((long)'\r'<<16) | ((long)'\n'<<24)) /* Magic word as global; note that _PyImport_Init() can change the - value of this global to accomodate for alterations of how the + value of this global to accommodate for alterations of how the compiler works which are enabled by command line switches. */ static long pyc_magic = MAGIC; |