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

brett.cannon python-checkins at python.org
Mon Feb 9 22:51:30 CET 2009


Author: brett.cannon
Date: Mon Feb  9 22:51:29 2009
New Revision: 69475

Log:
Add a NOTE that alternative VMs should be supported by importlib in a nicer
fashion by factoring out bytecode support.


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  9 22:51:29 2009
@@ -1,6 +1,10 @@
 to do
 /////
 
+* Refactor source/bytecode finder/loader code such that bytecode support is a
+  subclass of source support (makes it nicer for VMs that don't use CPython
+  bytecode).
+
 * Implement PEP 302 protocol for loaders (should just be a matter of testing).
 
     + Built-in.


More information about the Python-checkins mailing list