[pypy-svn] r71957 - pypy/trunk/pypy/lib

arigo at codespeak.net arigo at codespeak.net
Tue Mar 9 15:28:36 CET 2010


Author: arigo
Date: Tue Mar  9 15:28:35 2010
New Revision: 71957

Modified:
   pypy/trunk/pypy/lib/_locale.py
Log:
Bah.  This now comes from ctypes_config_cache/_locale_cache.py.


Modified: pypy/trunk/pypy/lib/_locale.py
==============================================================================
--- pypy/trunk/pypy/lib/_locale.py	(original)
+++ pypy/trunk/pypy/lib/_locale.py	Tue Mar  9 15:28:35 2010
@@ -14,9 +14,6 @@
 
 size_t = c_int
 
-# XXX check where this comes from
-CHAR_MAX = 127
-
 
 # Ubuntu Gusty i386 structure
 class lconv(Structure):
@@ -313,7 +310,7 @@
     'Error',
     'setlocale', 'localeconv', 'strxfrm', 'strcoll',
     'gettext', 'dgettext', 'dcgettext', 'textdomain',
-    'bindtextdomain', 'CHAR_MAX',
+    'bindtextdomain',
 ) + ALL_CONSTANTS
 if _bind_textdomain_codeset:
     __all__ += ('bind_textdomain_codeset',)



More information about the Pypy-commit mailing list