[Python-checkins] r57274 - sandbox/trunk/import_in_py/Py3K_TODO

brett.cannon python-checkins at python.org
Wed Aug 22 01:45:05 CEST 2007


Author: brett.cannon
Date: Wed Aug 22 01:45:04 2007
New Revision: 57274

Added:
   sandbox/trunk/import_in_py/Py3K_TODO   (contents, props changed)
Log:
List of todo items to get importlib into Py3K as the new import implementation.


Added: sandbox/trunk/import_in_py/Py3K_TODO
==============================================================================
--- (empty file)
+++ sandbox/trunk/import_in_py/Py3K_TODO	Wed Aug 22 01:45:04 2007
@@ -0,0 +1,17 @@
+This doc lists what is left to do before importlib can become the
+"One True Import".  The items in the list must be done in order!
+
+- 2.6-specific
+    * Be backwards-compatible.
+        + All tests must pass!
+            - importlib tests.
+            - 2.6 stdlib tests using importlib (see regrtest.sh).
+    * Rewrite zipimport.
+    * Put into 2.6 stdlib.
+- Py3K-specific
+    * Port to Py3K.
+        + Consider it a fork of code as semantics can change compared to 2.6 code.
+    * Bootstrap in as default import implementation.
+    * Fix C API to call importlib.
+    * Remove C implementation.
+    * Tune performance.


More information about the Python-checkins mailing list