summaryrefslogtreecommitdiffstats
path: root/Doc/library/locale.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-07-26 14:19:57 (GMT)
committerGeorg Brandl <georg@python.org>2009-07-26 14:19:57 (GMT)
commit9fa61bb37d68225c827aa7809382ea701c264db5 (patch)
tree7a086015c9e4ecbb02ad38895cf7dcc4cb7be605 /Doc/library/locale.rst
parent74f8fc0b1bccc971a3055b2e364c4a2db5123d50 (diff)
downloadcpython-9fa61bb37d68225c827aa7809382ea701c264db5.zip
cpython-9fa61bb37d68225c827aa7809382ea701c264db5.tar.gz
cpython-9fa61bb37d68225c827aa7809382ea701c264db5.tar.bz2
#6577: fix (hopefully) all links to builtin instead of module/class-specific objects.
Diffstat (limited to 'Doc/library/locale.rst')
-rw-r--r--Doc/library/locale.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/locale.rst b/Doc/library/locale.rst
index af2fd4b..c8be7af 100644
--- a/Doc/library/locale.rst
+++ b/Doc/library/locale.rst
@@ -454,8 +454,8 @@ The :mod:`locale` module defines the following exception and functions:
.. data:: LC_NUMERIC
- Locale category for formatting numbers. The functions :func:`format`,
- :func:`atoi`, :func:`atof` and :func:`str` of the :mod:`locale` module are
+ Locale category for formatting numbers. The functions :func:`.format`,
+ :func:`atoi`, :func:`atof` and :func:`.str` of the :mod:`locale` module are
affected by that category. All other numeric formatting operations are not
affected.
@@ -523,7 +523,7 @@ e.g. ``from string import letters``, is not affected by subsequent
The only way to perform numeric operations according to the locale is to use the
special functions defined by this module: :func:`atof`, :func:`atoi`,
-:func:`format`, :func:`str`.
+:func:`.format`, :func:`.str`.
.. _embedding-locale: