[Python-checkins] r52581 - sandbox/trunk/import_in_py/importer.py
brett.cannon
python-checkins at python.org
Thu Nov 2 00:50:55 CET 2006
Author: brett.cannon
Date: Thu Nov 2 00:50:54 2006
New Revision: 52581
Modified:
sandbox/trunk/import_in_py/importer.py
Log:
Update comment on implementation strategy for packages.
Modified: sandbox/trunk/import_in_py/importer.py
==============================================================================
--- sandbox/trunk/import_in_py/importer.py (original)
+++ sandbox/trunk/import_in_py/importer.py Thu Nov 2 00:50:54 2006
@@ -65,13 +65,12 @@
Implementing
------------
-1. Imports of top-level package.
- + __path__ set.
-2. Importing within package.
+#. Importing module within a package.
+#. Importing within package.
+ Root package already imported.
+ Root package not imported yet.
-3. fromlist semantics.
-4. Relative imports.
+#. fromlist semantics.
+#. Relative imports.
+ Py3K semantics.
+ 2.x semantics.
More information about the Python-checkins
mailing list