[Python-checkins] r61641 - sandbox/trunk/import_in_py/TODO sandbox/trunk/import_in_py/_importlib.py

brett.cannon python-checkins at python.org
Wed Mar 19 22:25:59 CET 2008


Author: brett.cannon
Date: Wed Mar 19 22:25:59 2008
New Revision: 61641

Modified:
   sandbox/trunk/import_in_py/TODO
   sandbox/trunk/import_in_py/_importlib.py
Log:
Mention PEP 366 which is not implemented yet.


Modified: sandbox/trunk/import_in_py/TODO
==============================================================================
--- sandbox/trunk/import_in_py/TODO	(original)
+++ sandbox/trunk/import_in_py/TODO	Wed Mar 19 22:25:59 2008
@@ -1,2 +1,3 @@
 * Put importlib into 2.6 stdlib.
 * For Py3K, always have __file__ point to the .py file if it exists.
+* PEP 366.

Modified: sandbox/trunk/import_in_py/_importlib.py
==============================================================================
--- sandbox/trunk/import_in_py/_importlib.py	(original)
+++ sandbox/trunk/import_in_py/_importlib.py	Wed Mar 19 22:25:59 2008
@@ -16,13 +16,15 @@
 * Packages
       http://www.python.org/doc/essays/packages.html
 * PEP 235: Import on Case-Insensitive Platforms
-      http://www.python.org/dev/peps/pep-0235
+      http://www.python.org/dev/peps/pep-0235/
 * PEP 275: Import Modules from Zip Archives
-      http://www.python.org/dev/peps/pep-0273
+      http://www.python.org/dev/peps/pep-0273/
 * PEP 302: New Import Hooks
       http://www.python.org/dev/peps/pep-0302/
 * PEP 328: Imports: Multi-line and Absolute/Relative
-      http://www.python.org/dev/peps/pep-0328
+      http://www.python.org/dev/peps/pep-0328/
+* PEP 366: Main module explicit relative import
+      http://www.python.org/dev/peps/pep-0366/
 
 ============
 Known Issues


More information about the Python-checkins mailing list