diff options
author | Georg Brandl <georg@python.org> | 2007-12-29 10:57:11 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-12-29 10:57:11 (GMT) |
commit | 18a499d1c5f47d0fbb56243bb458e2a71bd48c09 (patch) | |
tree | 69508c471e1a5f48222a87e2d1755dfded51357d /Doc/library | |
parent | 9a37159e51fc436594752ab0e6c6ad4d25df8e4e (diff) | |
download | cpython-18a499d1c5f47d0fbb56243bb458e2a71bd48c09.zip cpython-18a499d1c5f47d0fbb56243bb458e2a71bd48c09.tar.gz cpython-18a499d1c5f47d0fbb56243bb458e2a71bd48c09.tar.bz2 |
Two nits.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/constants.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/constants.rst b/Doc/library/constants.rst index 634656a..0d44b7b 100644 --- a/Doc/library/constants.rst +++ b/Doc/library/constants.rst @@ -8,7 +8,8 @@ A small number of constants live in the built-in namespace. They are: .. note:: :data:`None`, :data:`False`, :data:`True` and :data:`__debug__` cannot be - reassigned, so they can be considered "true" constants. + reassigned (assignments to them raise :exc:`SyntaxError`), so they can be + considered "true" constants. .. XXX False, True, None are keywords too |