[Python-checkins] cpython (3.1): Add missing name in pkgutil.__all__

eric.araujo python-checkins at python.org
Thu May 26 16:51:45 CEST 2011


http://hg.python.org/cpython/rev/2ee64c205d37
changeset:   70406:2ee64c205d37
branch:      3.1
parent:      69762:ecf41fca3273
user:        Éric Araujo <merwok at netwok.org>
date:        Mon May 02 22:59:15 2011 +0200
summary:
  Add missing name in pkgutil.__all__

files:
  Lib/pkgutil.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/pkgutil.py b/Lib/pkgutil.py
--- a/Lib/pkgutil.py
+++ b/Lib/pkgutil.py
@@ -8,7 +8,7 @@
 
 __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',
 ]
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list