diff options
author | Barry Warsaw <barry@python.org> | 2001-08-13 23:05:44 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-08-13 23:05:44 (GMT) |
commit | 928833891a06bfc6db37c806ceb997aca2d102f3 (patch) | |
tree | 30c379c06ac5f22b5ac081e37ef98dad139b5616 /Python | |
parent | 5821bc5145437fd68f4ebc9dad01d1192462f60d (diff) | |
download | cpython-928833891a06bfc6db37c806ceb997aca2d102f3.zip cpython-928833891a06bfc6db37c806ceb997aca2d102f3.tar.gz cpython-928833891a06bfc6db37c806ceb997aca2d102f3.tar.bz2 |
Fixed typo in comment leading up to _PyImport_FixupExtension().
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 728e1cd..5c2a9ad 100644 --- a/Python/import.c +++ b/Python/import.c @@ -355,7 +355,7 @@ PyImport_GetMagicNumber(void) loaded). To prevent initializing an extension module more than once, we keep a static dictionary 'extensions' keyed by module name (for built-in modules) or by filename (for dynamically loaded - modules), containing these modules. A copy od the module's + modules), containing these modules. A copy of the module's dictionary is stored by calling _PyImport_FixupExtension() immediately after the module initialization function succeeds. A copy can be retrieved from there by calling |