[Python-checkins] r69213 - python/branches/py3k/Lib/importlib/NOTES

brett.cannon python-checkins at python.org
Mon Feb 2 21:32:30 CET 2009


Author: brett.cannon
Date: Mon Feb  2 21:32:29 2009
New Revision: 69213

Log:
Add some notes for importlib to package up what is in Python 2.7 as well as modules that can probably get replaced by importlib at some point.

Modified:
   python/branches/py3k/Lib/importlib/NOTES

Modified: python/branches/py3k/Lib/importlib/NOTES
==============================================================================
--- python/branches/py3k/Lib/importlib/NOTES	(original)
+++ python/branches/py3k/Lib/importlib/NOTES	Mon Feb  2 21:32:29 2009
@@ -1,6 +1,8 @@
 to do
 /////
 
+* Create sandbox directory for a distutils packaging of what is in Python 2.7.
+
 * Use rpartition for getting the package of a module.
 
     + Make sure that an empty string is acceptable for __package__.
@@ -77,3 +79,9 @@
     - Relative name from sys.path.
 
 * Bootstrap importlib as implementation of builtins.__import__
+
+* Replace standard library modules.
+
+  + imp
+  + py_compile
+  + compileall


More information about the Python-checkins mailing list