diff options
author | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
commit | 55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch) | |
tree | a0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/locale.rst | |
parent | 1617457cff847fed9fadb01f1acf6ba8bb621726 (diff) | |
download | cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2 |
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/locale.rst')
-rw-r--r-- | Doc/library/locale.rst | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Doc/library/locale.rst b/Doc/library/locale.rst index 6d427b7..630833a 100644 --- a/Doc/library/locale.rst +++ b/Doc/library/locale.rst @@ -50,9 +50,6 @@ The :mod:`locale` module defines the following exception and functions: specified in the :envvar:`LANG` environment variable). If the locale is not changed thereafter, using multithreading should not cause problems. - .. versionchanged:: 2.0 - Added support for tuple values of the *locale* parameter. - .. function:: localeconv() @@ -176,8 +173,6 @@ The :mod:`locale` module defines the following exception and functions: *language code* and *encoding* may be ``None`` if their values cannot be determined. - .. versionadded:: 2.0 - .. function:: getlocale([category]) @@ -189,8 +184,6 @@ The :mod:`locale` module defines the following exception and functions: *language code* and *encoding* may be ``None`` if their values cannot be determined. - .. versionadded:: 2.0 - .. function:: getpreferredencoding([do_setlocale]) @@ -203,8 +196,6 @@ The :mod:`locale` module defines the following exception and functions: preferences, so this function is not thread-safe. If invoking setlocale is not necessary or desired, *do_setlocale* should be set to ``False``. - .. versionadded:: 2.3 - .. function:: normalize(localename) @@ -215,8 +206,6 @@ The :mod:`locale` module defines the following exception and functions: If the given encoding is not known, the function defaults to the default encoding for the locale code just like :func:`setlocale`. - .. versionadded:: 2.0 - .. function:: resetlocale([category]) @@ -225,8 +214,6 @@ The :mod:`locale` module defines the following exception and functions: The default setting is determined by calling :func:`getdefaultlocale`. *category* defaults to :const:`LC_ALL`. - .. versionadded:: 2.0 - .. function:: strcoll(string1, string2) @@ -259,17 +246,12 @@ The :mod:`locale` module defines the following exception and functions: Please note that this function will only work for exactly one %char specifier. For whole format strings, use :func:`format_string`. - .. versionchanged:: 2.5 - Added the *monetary* parameter. - .. function:: format_string(format, val[, grouping]) Processes formatting specifiers as in ``format % val``, but takes the current locale settings into account. - .. versionadded:: 2.5 - .. function:: currency(val[, symbol[, grouping[, international]]]) @@ -283,8 +265,6 @@ The :mod:`locale` module defines the following exception and functions: Note that this function will not work with the 'C' locale, so you have to set a locale via :func:`setlocale` first. - .. versionadded:: 2.5 - .. function:: str(float) |