[Python-checkins] r52195 - sandbox/trunk/import_in_py/importer.py
brett.cannon
python-checkins at python.org
Thu Oct 5 23:42:48 CEST 2006
Author: brett.cannon
Date: Thu Oct 5 23:42:47 2006
New Revision: 52195
Modified:
sandbox/trunk/import_in_py/importer.py
Log:
Clarify a comment for load_module().
Modified: sandbox/trunk/import_in_py/importer.py
==============================================================================
--- sandbox/trunk/import_in_py/importer.py (original)
+++ sandbox/trunk/import_in_py/importer.py Thu Oct 5 23:42:47 2006
@@ -52,7 +52,8 @@
"""Load a built-in or frozen module.
'imp' code for loading a built-in or frozen module handles the setting
- of a module in sys.modules before initializing the module.
+ of a module in sys.modules before initializing the module. This means
+ that we do not need to perform that step as outlined by PEP 302.
"""
if path is not None:
More information about the Python-checkins
mailing list