From: Barry Warsaw Date: Mon, 13 Aug 2001 23:05:44 +0000 (+0000) Subject: Fixed typo in comment leading up to _PyImport_FixupExtension(). X-Git-Tag: v2.2a3~574 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=928833891a06bfc6db37c806ceb997aca2d102f3;p=thirdparty%2FPython%2Fcpython.git Fixed typo in comment leading up to _PyImport_FixupExtension(). --- diff --git a/Python/import.c b/Python/import.c index 728e1cd0c141..5c2a9adee4fb 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