summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2009-02-09 21:51:29 (GMT)
committerBrett Cannon <bcannon@gmail.com>2009-02-09 21:51:29 (GMT)
commitc1761b7cd59b8179adbd9f35bee3847f5dba1f8d (patch)
tree0cb8e2e9b9119e03699925d52f06ffc7be1d3abd
parenta91790a5b0b3c8967d5c42407bb500d298e06d7d (diff)
downloadcpython-c1761b7cd59b8179adbd9f35bee3847f5dba1f8d.zip
cpython-c1761b7cd59b8179adbd9f35bee3847f5dba1f8d.tar.gz
cpython-c1761b7cd59b8179adbd9f35bee3847f5dba1f8d.tar.bz2
Add a NOTE that alternative VMs should be supported by importlib in a nicer
fashion by factoring out bytecode support.
-rw-r--r--Lib/importlib/NOTES4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/importlib/NOTES b/Lib/importlib/NOTES
index 6512d93..f1de623 100644
--- a/Lib/importlib/NOTES
+++ b/Lib/importlib/NOTES
@@ -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.