summaryrefslogtreecommitdiffstats
path: root/Lib/pkgutil.py
diff options
context:
space:
mode:
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)
commitea088c5163e3ea3e37950433be32a864d4589eb3 (patch)
treeb62dee05a938b18a37bda03130dc457b50acbf8c /Lib/pkgutil.py
parent78d9133989c26c8539c51acfbc98aff416a701cd (diff)
downloadcpython-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.py2
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',
]