diff options
| author | Éric Araujo <merwok@netwok.org> | 2011-05-25 16:11:24 (GMT) |
|---|---|---|
| committer | Éric Araujo <merwok@netwok.org> | 2011-05-25 16:11:24 (GMT) |
| commit | ea088c5163e3ea3e37950433be32a864d4589eb3 (patch) | |
| tree | b62dee05a938b18a37bda03130dc457b50acbf8c /Lib/pkgutil.py | |
| parent | 78d9133989c26c8539c51acfbc98aff416a701cd (diff) | |
| download | cpython-ea088c5163e3ea3e37950433be32a864d4589eb3.zip cpython-ea088c5163e3ea3e37950433be32a864d4589eb3.tar.gz cpython-ea088c5163e3ea3e37950433be32a864d4589eb3.tar.bz2 | |
Add missing name in pkgutil.__all__
Diffstat (limited to 'Lib/pkgutil.py')
| -rw-r--r-- | Lib/pkgutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pkgutil.py b/Lib/pkgutil.py index c50928f..322bbdf 100644 --- a/Lib/pkgutil.py +++ b/Lib/pkgutil.py @@ -11,7 +11,7 @@ from types import ModuleType __all__ = [ 'get_importer', 'iter_importers', 'get_loader', 'find_loader', - 'walk_packages', 'iter_modules', + 'walk_packages', 'iter_modules', 'get_data', 'ImpImporter', 'ImpLoader', 'read_code', 'extend_path', ] |
