Commit 0484329b authored by R David Murray's avatar R David Murray

#15429: Fix invalid mention of types.NoneType from None docs.

parent f52c5472
...@@ -19,7 +19,7 @@ A small number of constants live in the built-in namespace. They are: ...@@ -19,7 +19,7 @@ A small number of constants live in the built-in namespace. They are:
.. data:: None .. data:: None
The sole value of :attr:`types.NoneType`. ``None`` is frequently used to The sole value of the type ``NoneType``. ``None`` is frequently used to
represent the absence of a value, as when default arguments are not passed to a represent the absence of a value, as when default arguments are not passed to a
function. Assignments to ``None`` are illegal and raise a :exc:`SyntaxError`. function. Assignments to ``None`` are illegal and raise a :exc:`SyntaxError`.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment