diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-10 04:49:25 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-10 04:49:25 (GMT) |
commit | 48b98ded6ef4d9760eeab38c5757988b5daadd1b (patch) | |
tree | 332224537a1048d7279d898529945d119c622dbb | |
parent | 5bacec1864d35297b19ec8e6de99f758ee12e0e2 (diff) | |
download | cpython-48b98ded6ef4d9760eeab38c5757988b5daadd1b.zip cpython-48b98ded6ef4d9760eeab38c5757988b5daadd1b.tar.gz cpython-48b98ded6ef4d9760eeab38c5757988b5daadd1b.tar.bz2 |
strxfrm and strcoll are conditionally defined, alwsy provide some impl
-rw-r--r-- | Lib/locale.py | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/Lib/locale.py b/Lib/locale.py index 448b018..eb8b33d 100644 --- a/Lib/locale.py +++ b/Lib/locale.py @@ -26,6 +26,18 @@ __all__ = ["getlocale", "getdefaultlocale", "getpreferredencoding", "Error", "normalize", "LC_CTYPE", "LC_COLLATE", "LC_TIME", "LC_MONETARY", "LC_NUMERIC", "LC_ALL", "CHAR_MAX"] +def _strcoll(a,b): + """ strcoll(string,string) -> int. + Compares two strings according to the locale. + """ + return cmp(a,b) + +def _strxfrm(s): + """ strxfrm(string) -> string. + Returns a string that behaves for cmp locale-aware. + """ + return s + try: from _locale import * @@ -76,17 +88,11 @@ except ImportError: raise Error('_locale emulation only supports "C" locale') return 'C' - def strcoll(a,b): - """ strcoll(string,string) -> int. - Compares two strings according to the locale. - """ - return cmp(a,b) - - def strxfrm(s): - """ strxfrm(string) -> string. - Returns a string that behaves for cmp locale-aware. - """ - return s +# These may or may not exist in _locale, so be sure to set them. +if 'strxfrm' not in globals(): + strxfrm = _strxfrm +if 'strcoll' not in globals(): + strcoll = _strcoll ### Number formatting APIs |