File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2706,7 +2706,7 @@ The Null Object
27062706
27072707This object is returned by functions that don't explicitly return a value. It
27082708supports no special operations. There is exactly one null object, named
2709- ``None `` (a built-in name).
2709+ ``None `` (a built-in name). Calling `` type(None) `` produces the same singleton.
27102710
27112711It is written as ``None ``.
27122712
@@ -2718,7 +2718,8 @@ The Ellipsis Object
27182718
27192719This object is commonly used by slicing (see :ref: `slicings `). It supports no
27202720special operations. There is exactly one ellipsis object, named
2721- :const: `Ellipsis ` (a built-in name).
2721+ :const: `Ellipsis ` (a built-in name). Calling ``type(Ellipsis) `` produces the
2722+ :const: `Ellipsis ` singleton.
27222723
27232724It is written as ``Ellipsis `` or ``... ``.
27242725
@@ -2728,7 +2729,8 @@ The NotImplemented Object
27282729
27292730This object is returned from comparisons and binary operations when they are
27302731asked to operate on types they don't support. See :ref: `comparisons ` for more
2731- information.
2732+ information. There is exactly one ``NotImplemented `` object. Calling
2733+ ``type(NotImplemented) `` produces the singleton instance.
27322734
27332735It is written as ``NotImplemented ``.
27342736
You can’t perform that action at this time.
0 commit comments