summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-07-30 17:26:27 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-07-30 17:26:27 (GMT)
commit98f2b9bff0c3d884fdcf827a10b856afcde13bc2 (patch)
tree2c97c1d194f4214f8e3c5826ef6b3f75fe3ab668 /Doc
parent2c69e3dd822291538d972edb5df7549257406f35 (diff)
downloadcpython-98f2b9bff0c3d884fdcf827a10b856afcde13bc2.zip
cpython-98f2b9bff0c3d884fdcf827a10b856afcde13bc2.tar.gz
cpython-98f2b9bff0c3d884fdcf827a10b856afcde13bc2.tar.bz2
transition move technically correct to obviously so
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/stdtypes.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 2840055..8a117ba 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2706,7 +2706,7 @@ The Null Object
This object is returned by functions that don't explicitly return a value. It
supports no special operations. There is exactly one null object, named
-``None`` (a built-in name). Calling ``type(None)`` produces the same singleton.
+``None`` (a built-in name). ``type(None)()`` produces the same singleton.
It is written as ``None``.
@@ -2718,7 +2718,7 @@ The Ellipsis Object
This object is commonly used by slicing (see :ref:`slicings`). It supports no
special operations. There is exactly one ellipsis object, named
-:const:`Ellipsis` (a built-in name). Calling ``type(Ellipsis)`` produces the
+:const:`Ellipsis` (a built-in name). ``type(Ellipsis)()`` produces the
:const:`Ellipsis` singleton.
It is written as ``Ellipsis`` or ``...``.
@@ -2729,8 +2729,8 @@ The NotImplemented Object
This object is returned from comparisons and binary operations when they are
asked to operate on types they don't support. See :ref:`comparisons` for more
-information. There is exactly one ``NotImplemented`` object. Calling
-``type(NotImplemented)`` produces the singleton instance.
+information. There is exactly one ``NotImplemented`` object.
+``type(NotImplemented)()`` produces the singleton instance.
It is written as ``NotImplemented``.