summaryrefslogtreecommitdiffstats
path: root/Doc/reference/datamodel.rst
diff options
context:
space:
mode:
authorCaleb Donovick <cdonovick@users.noreply.github.com>2020-03-06 18:20:48 (GMT)
committerGitHub <noreply@github.com>2020-03-06 18:20:48 (GMT)
commite59334ebc9308b0f3ad048ef293c6b49e6456d1a (patch)
tree99faff2058d8c6a3922db51c72d5f81765a2bd9e /Doc/reference/datamodel.rst
parent9a73705a1d0cb8b89d0a20add2ffa2c4d32950ed (diff)
downloadcpython-e59334ebc9308b0f3ad048ef293c6b49e6456d1a.zip
cpython-e59334ebc9308b0f3ad048ef293c6b49e6456d1a.tar.gz
cpython-e59334ebc9308b0f3ad048ef293c6b49e6456d1a.tar.bz2
bpo-17422: slightly more precise language (GH-18682)
Diffstat (limited to 'Doc/reference/datamodel.rst')
-rw-r--r--Doc/reference/datamodel.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 8be432d..c683d99 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1956,7 +1956,7 @@ namespace returned by ``__prepare__`` is passed in to ``__new__``, but when
the final class object is created the namespace is copied into a new ``dict``.
If the metaclass has no ``__prepare__`` attribute, then the class namespace
-is initialised as an empty :func:`dict`.
+is initialised as an empty ordered mapping.
.. seealso::