[Python-checkins] distutils2: Fix type of d2.metadata.__all__

tarek.ziade python-checkins at python.org
Wed Feb 16 22:23:56 CET 2011


tarek.ziade pushed bbc4437b851b to distutils2:

http://hg.python.org/distutils2/rev/bbc4437b851b
changeset:   1010:bbc4437b851b
user:        ?ric Araujo <merwok at netwok.org>
date:        Sun Feb 06 18:12:35 2011 +0100
summary:
  Fix type of d2.metadata.__all__

files:
  distutils2/metadata.py

diff --git a/distutils2/metadata.py b/distutils2/metadata.py
--- a/distutils2/metadata.py
+++ b/distutils2/metadata.py
@@ -41,8 +41,8 @@
     _HAS_DOCUTILS = False
 
 # public API of this module
-__all__ = ('Metadata', 'PKG_INFO_ENCODING',
-           'PKG_INFO_PREFERRED_VERSION')
+__all__ = ['Metadata', 'PKG_INFO_ENCODING',
+           'PKG_INFO_PREFERRED_VERSION']
 
 # Encoding used for the PKG-INFO files
 PKG_INFO_ENCODING = 'utf-8'

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


More information about the Python-checkins mailing list