diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-02-02 05:58:30 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-02-02 05:58:30 (GMT) |
commit | 02a6888d91ed6a9d8c52db8e54fca6e633fbb9cb (patch) | |
tree | c8a89989e2f81c94d17c4de649f068812e4a9858 /Lib | |
parent | 8ec58299106e3c2550dfad3acf1e35ae8a590a0d (diff) | |
download | cpython-02a6888d91ed6a9d8c52db8e54fca6e633fbb9cb.zip cpython-02a6888d91ed6a9d8c52db8e54fca6e633fbb9cb.tar.gz cpython-02a6888d91ed6a9d8c52db8e54fca6e633fbb9cb.tar.bz2 |
Note to move __package__ stuff over to rpartition to make Nick happy. Also make
sure that accepting the empty string for top-level modules is okay.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/importlib/NOTES | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/importlib/NOTES b/Lib/importlib/NOTES index 7a9ca66..5e65270 100644 --- a/Lib/importlib/NOTES +++ b/Lib/importlib/NOTES @@ -1,6 +1,10 @@ to do ///// +* Use rpartition for getting the package of a module. + + + Make sure that an empty string is acceptable for __package__. + * Create meta_path importer for sys.path. + Create hook. |