commit | ecb863b29ecaa4cd48679a45e9f9455b1f717f8b | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Mon Jun 20 22:07:06 2011 +0200 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Mon Jun 20 22:07:06 2011 +0200 |
tree | 55982f599d8723c120795ec5e77641bd974d6680 | |
parent | f64a0cffca141fa0a8f1138b5f069ea0da446c9f [diff] [blame] |
Revert d370d609d09b as requested by Terry Jan Reedy: "#3067: locale.setlocale() accepts a Unicode locale."
diff --git a/Lib/locale.py b/Lib/locale.py index f204b56..bb4aa37 100644 --- a/Lib/locale.py +++ b/Lib/locale.py
@@ -525,7 +525,7 @@ category may be given as one of the LC_* values. """ - if locale and not isinstance(locale, basestring): + if locale and type(locale) is not type(""): # convert to string locale = normalize(_build_localename(locale)) return _setlocale(category, locale)