Commit 92883389 authored by Barry Warsaw's avatar Barry Warsaw

Fixed typo in comment leading up to _PyImport_FixupExtension().

parent 5821bc51
...@@ -355,7 +355,7 @@ PyImport_GetMagicNumber(void) ...@@ -355,7 +355,7 @@ PyImport_GetMagicNumber(void)
loaded). To prevent initializing an extension module more than loaded). To prevent initializing an extension module more than
once, we keep a static dictionary 'extensions' keyed by module name once, we keep a static dictionary 'extensions' keyed by module name
(for built-in modules) or by filename (for dynamically loaded (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() dictionary is stored by calling _PyImport_FixupExtension()
immediately after the module initialization function succeeds. A immediately after the module initialization function succeeds. A
copy can be retrieved from there by calling copy can be retrieved from there by calling
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment