diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-11-05 03:49:09 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-11-05 03:49:09 (GMT) |
commit | a326f47a13e0c9fac32067f093976e2210da09e5 (patch) | |
tree | 838e141683374d01dc01a7e83c4f48d983cf4c78 | |
parent | bc5e3cc34fc9943aa0d04cabc8030a5984868676 (diff) | |
download | cpython-a326f47a13e0c9fac32067f093976e2210da09e5.zip cpython-a326f47a13e0c9fac32067f093976e2210da09e5.tar.gz cpython-a326f47a13e0c9fac32067f093976e2210da09e5.tar.bz2 |
This stopped working on Windows, due to a reference to the non-existent
_locale.getdefaultlocale. Guessing a leading underscore was intended,
but don't really understood this stuff (locale looks like Spanish for
the opposite of global to me <wink>).
-rw-r--r-- | Lib/locale.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/locale.py b/Lib/locale.py index 9ae981f..8a26744 100644 --- a/Lib/locale.py +++ b/Lib/locale.py @@ -397,7 +397,7 @@ if sys.platform in ('win32', 'darwin', 'mac'): def getpreferredencoding(do_setlocale = True): """Return the charset that the user is likely using.""" import _locale - return _locale.getdefaultlocale()[1] + return _locale._getdefaultlocale()[1] else: # On Unix, if CODESET is available, use that. try: |