]> granicus.if.org Git - python/commitdiff
Backport from 3.2: link to mapping glossary entry in docs.
authorChris Jerdonek <chris.jerdonek@gmail.com>
Sat, 3 Nov 2012 19:13:46 +0000 (12:13 -0700)
committerChris Jerdonek <chris.jerdonek@gmail.com>
Sat, 3 Nov 2012 19:13:46 +0000 (12:13 -0700)
Doc/library/os.rst
Doc/library/stdtypes.rst

index 17ad10557571236ce60cba06a68c04783b5a5b7c..02a9ecd96ad2991397c941d9941db6874a563521 100644 (file)
@@ -72,7 +72,7 @@ process and user.
 
 .. 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.
 
index b08561e1cd30bda1b60d521d3425b90c9ed5e605..f00c4fb4f5be8dae768403d93f2b9f047d55bec1 100644 (file)
@@ -1937,7 +1937,7 @@ Mapping Types --- :class:`dict`
    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