(original) (raw)
changeset: 73374:8a27920efffe parent: 73370:91a0f6879173 parent: 73373:98806dd03506 user: Petri Lehtinen petri@digip.org date: Sat Nov 05 10:21:49 2011 +0200 files: Misc/NEWS description: Issue #3067: Enhance the documentation and docstring of locale.setlocale() diff -r 91a0f6879173 -r 8a27920efffe Doc/library/locale.rst --- a/Doc/library/locale.rst Sat Nov 05 09:45:53 2011 +0200 +++ b/Doc/library/locale.rst Sat Nov 05 10:21:49 2011 +0200 @@ -22,19 +22,19 @@ .. exception:: Error - Exception raised when :func:`setlocale` fails. + Exception raised when the locale passed to :func:`setlocale` is not + recognized. .. function:: setlocale(category, locale=None) - If *locale* is specified, it may be a string, a tuple of the form ``(language - code, encoding)``, or ``None``. If it is a tuple, it is converted to a string - using the locale aliasing engine. If *locale* is given and not ``None``, - :func:`setlocale` modifies the locale setting for the *category*. The available - categories are listed in the data description below. The value is the name of a - locale. An empty string specifies the user's default settings. If the - modification of the locale fails, the exception :exc:`Error` is raised. If - successful, the new locale setting is returned. + If *locale* is given and not ``None``, :func:`setlocale` modifies the locale + setting for the *category*. The available categories are listed in the data + description below. *locale* may be a string, or an iterable of two strings + (language code and encoding). If it's an iterable, it's converted to a locale + name using the locale aliasing engine. An empty string specifies the user's + default settings. If the modification of the locale fails, the exception + :exc:`Error` is raised. If successful, the new locale setting is returned. If *locale* is omitted or ``None``, the current setting for *category* is returned. diff -r 91a0f6879173 -r 8a27920efffe Lib/locale.py --- a/Lib/locale.py Sat Nov 05 09:45:53 2011 +0200 +++ b/Lib/locale.py Sat Nov 05 10:21:49 2011 +0200 @@ -526,9 +526,10 @@ def setlocale(category, locale=None): """ Set the locale for the given category. The locale can be - a string, a locale tuple (language code, encoding), or None. + a string, an iterable of two strings (language code and encoding), + or None. - Locale tuples are converted to strings the locale aliasing + Iterables are converted to strings using the locale aliasing engine. Locale strings are passed directly to the C lib. category may be given as one of the LC_* values. diff -r 91a0f6879173 -r 8a27920efffe Misc/NEWS --- a/Misc/NEWS Sat Nov 05 09:45:53 2011 +0200 +++ b/Misc/NEWS Sat Nov 05 10:21:49 2011 +0200 @@ -358,7 +358,8 @@ are read correctly. - Issue #3067: locale.setlocale() now raises TypeError if the second - argument is an invalid iterable. Initial patch by Jyrki Pulliainen. + argument is an invalid iterable. Its documentation and docstring + were also updated. Initial patch by Jyrki Pulliainen. - Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn. /petri@digip.org