diff options
author | Georg Brandl <georg@python.org> | 2007-12-21 08:16:54 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-12-21 08:16:54 (GMT) |
commit | e5a32dcc37b32470d908a30a06c419ee0f8381f0 (patch) | |
tree | 7e7377094e29380d4cf623f58e06dc040c01160e | |
parent | 69aabc0301376578dca35703ec4a51258c2002ec (diff) | |
download | cpython-e5a32dcc37b32470d908a30a06c419ee0f8381f0.zip cpython-e5a32dcc37b32470d908a30a06c419ee0f8381f0.tar.gz cpython-e5a32dcc37b32470d908a30a06c419ee0f8381f0.tar.bz2 |
Fix docstring of types.py.
-rw-r--r-- | Lib/types.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/types.py b/Lib/types.py index 46a539a..65b70f7 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -1,6 +1,5 @@ -"""Define names for all type symbols known in the standard interpreter. - -Types that are part of optional modules (e.g. array) are not listed. +""" +Define names for built-in types that aren't directly accessible as a builtin. """ import sys |