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

brett.cannon python-checkins at python.org
Sun Feb 1 06:55:23 CET 2009


Author: brett.cannon
Date: Sun Feb  1 06:55:23 2009
New Revision: 69178

Log:
Update importlib notes.

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	Sun Feb  1 06:55:23 2009
@@ -1,20 +1,10 @@
 to do
 /////
 
-* API simplification?
-
-    + write_bytecode -> complete set of bytes for bytecode instead of
-      individual arguments.
-
 * Create meta_path importer for sys.path.
 
-* OPTIMIZE!
-
-  + Write benchmark suite.
-  + Fast path common cases.
-
-    - Absolute name from sys.path.
-    - Relative name from sys.path.
+    + Create hook.
+    + Rewrite Import to use the hook.
 
 * Implement PEP 302 protocol for loaders (should just be a matter of testing).
 
@@ -73,4 +63,13 @@
           * SourceFinder
           * (?) Loader
 
+* Write benchmark suite.
+
+* OPTIMIZE!
+
+  + Fast path common cases.
+
+    - Absolute name from sys.path.
+    - Relative name from sys.path.
+
 * Bootstrap importlib as implementation of builtins.__import__


More information about the Python-checkins mailing list