[pypy-svn] r54590 - pypy/dist/pypy/lib

arigo at codespeak.net arigo at codespeak.net
Fri May 9 14:58:21 CEST 2008


Author: arigo
Date: Fri May  9 14:58:21 2008
New Revision: 54590

Modified:
   pypy/dist/pypy/lib/_locale.py
Log:
This name may be undefined.


Modified: pypy/dist/pypy/lib/_locale.py
==============================================================================
--- pypy/dist/pypy/lib/_locale.py	(original)
+++ pypy/dist/pypy/lib/_locale.py	Fri May  9 14:58:21 2008
@@ -414,8 +414,10 @@
     'Error',
     'setlocale', 'localeconv', 'strxfrm', 'strcoll',
     'gettext', 'dgettext', 'dcgettext', 'textdomain',
-    'bindtextdomain', 'bind_textdomain_codeset',
+    'bindtextdomain',
 )
+if _bind_textdomain_codeset:
+    __all__ += ('bind_textdomain_codeset',)
 if HAS_LANGINFO:
     __all__ += ('nl_langinfo',)
 



More information about the Pypy-commit mailing list