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

This commit is contained in:
R David Murray 2012-07-22 20:43:13 -04:00
parent 76c28f7ce2
commit e60e12b57a
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ A small number of constants live in the built-in namespace. They are:
.. 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
function. Assignments to ``None`` are illegal and raise a :exc:`SyntaxError`.