[Python-checkins] r52714 - sandbox/trunk/import_in_py/importer.py
brett.cannon
python-checkins at python.org
Fri Nov 10 00:30:29 CET 2006
Author: brett.cannon
Date: Fri Nov 10 00:30:28 2006
New Revision: 52714
Modified:
sandbox/trunk/import_in_py/importer.py
Log:
Clean up now-stale comments.
Modified: sandbox/trunk/import_in_py/importer.py
==============================================================================
--- sandbox/trunk/import_in_py/importer.py (original)
+++ sandbox/trunk/import_in_py/importer.py Fri Nov 10 00:30:28 2006
@@ -310,7 +310,6 @@
deal with initializing the module passed to it.
"""
- # XXX Ignores 'path' at the moment.
try:
return sys.modules[fullname]
except KeyError:
@@ -533,7 +532,6 @@
files). Both are controlled during instance initialization.
"""
- # XXX Packages not supported.
# XXX Import lock not used.
def __init__(self, default_path_hook=None,
@@ -661,9 +659,6 @@
the module represented by the full dotted name is returned.
"""
- # XXX Does not handle packages yet, which means no absolute/relative imports
- # or fromlist worries.
-
# XXX Check for a relative import; if it is one make it absolute to try to import that,
# otherwise import as a top-level module.
More information about the Python-checkins
mailing list