[Python-checkins] cpython (3.2): Link to mapping glossary entry in "Mapping Types - dict" and os.environ docs.

chris.jerdonek python-checkins at python.org
Sat Nov 3 20:14:47 CET 2012


http://hg.python.org/cpython/rev/18076647922a
changeset:   80203:18076647922a
branch:      3.2
parent:      80200:29983dd7191e
user:        Chris Jerdonek <chris.jerdonek at gmail.com>
date:        Sat Nov 03 12:05:55 2012 -0700
summary:
  Link to mapping glossary entry in "Mapping Types - dict" and os.environ docs.

files:
  Doc/library/os.rst       |  4 ++--
  Doc/library/stdtypes.rst |  2 +-
  2 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/library/os.rst b/Doc/library/os.rst
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -98,7 +98,7 @@
 
 .. data:: environ
 
-   A mapping object representing the string environment. For example,
+   A :term:`mapping` object representing the string environment. For example,
    ``environ['HOME']`` is the pathname of your home directory (on some platforms),
    and is equivalent to ``getenv("HOME")`` in C.
 
@@ -138,7 +138,7 @@
 
 .. data:: environb
 
-   Bytes version of :data:`environ`: a mapping object representing the
+   Bytes version of :data:`environ`: a :term:`mapping` object representing the
    environment as byte strings. :data:`environ` and :data:`environb` are
    synchronized (modify :data:`environb` updates :data:`environ`, and vice
    versa).
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2095,7 +2095,7 @@
    statement: del
    builtin: len
 
-A :dfn:`mapping` object maps :term:`hashable` values to arbitrary objects.
+A :term:`mapping` object maps :term:`hashable` values to arbitrary objects.
 Mappings are mutable objects.  There is currently only one standard mapping
 type, the :dfn:`dictionary`.  (For other containers see the built in
 :class:`list`, :class:`set`, and :class:`tuple` classes, and the

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list