diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-02-21 03:53:06 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-02-21 03:53:06 (GMT) |
commit | 0515619dbc0c11818fa15785e40491cf8d01042f (patch) | |
tree | aaffaa3d9d20f2bcf9d0d6ac9fdc3e53d9706694 /Lib/importlib/NOTES | |
parent | 4afab6b30b6262012946171fbcb69043c4b28efc (diff) | |
download | cpython-0515619dbc0c11818fa15785e40491cf8d01042f.zip cpython-0515619dbc0c11818fa15785e40491cf8d01042f.tar.gz cpython-0515619dbc0c11818fa15785e40491cf8d01042f.tar.bz2 |
Tweak the source/bytecode loader from importlib to use more of the PEP 302
protocol API.
Diffstat (limited to 'Lib/importlib/NOTES')
-rw-r--r-- | Lib/importlib/NOTES | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/importlib/NOTES b/Lib/importlib/NOTES index 1bbcb96..35c8fd3 100644 --- a/Lib/importlib/NOTES +++ b/Lib/importlib/NOTES @@ -7,6 +7,7 @@ to do + PyLoader (for ABC) + - load_module for source only - get_code for source only + PyFileLoader(PyLoader) @@ -17,6 +18,7 @@ to do +PyPycLoader (PyLoader, for ABC) + - load_module for source and bytecode - get_code for source and bytecode + PyPycFileLoader(PyPycLoader, PyFileLoader) |