From: Brett Cannon Date: Mon, 9 Feb 2009 21:51:29 +0000 (+0000) Subject: Add a NOTE that alternative VMs should be supported by importlib in a nicer X-Git-Tag: v3.1a1~226 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1761b7cd59b8179adbd9f35bee3847f5dba1f8d;p=thirdparty%2FPython%2Fcpython.git Add a NOTE that alternative VMs should be supported by importlib in a nicer fashion by factoring out bytecode support. --- diff --git a/Lib/importlib/NOTES b/Lib/importlib/NOTES index 6512d931d69e..f1de623b3de3 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.