diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-15 01:28:04 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-15 01:28:04 (GMT) |
commit | 2d378ab5b21919193056c2314bfeef634ab67a29 (patch) | |
tree | 62e456e250b24cc645ef5b761759225cb7fef771 /Python | |
parent | 0449f63f53fa0c2fcf779703d2db77d8a658cf7d (diff) | |
download | cpython-2d378ab5b21919193056c2314bfeef634ab67a29.zip cpython-2d378ab5b21919193056c2314bfeef634ab67a29.tar.gz cpython-2d378ab5b21919193056c2314bfeef634ab67a29.tar.bz2 |
Fixed #1630
sys.maxint was still documented and sys.float_info an sys.subversion were missing
Diffstat (limited to 'Python')
-rw-r--r-- | Python/sysmodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 69732cc..ea4d3cc 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -865,10 +865,11 @@ PyDoc_STR( "\n\ Static objects:\n\ \n\ -maxint -- the largest supported integer (the smallest is -maxint-1)\n\ +float_info -- a dict with information about the float implementation.\n\ maxsize -- the largest supported length of containers.\n\ maxunicode -- the largest supported character\n\ builtin_module_names -- tuple of module names built into this interpreter\n\ +subversion -- subversion information of the build as tuple\n\ version -- the version of this interpreter as a string\n\ version_info -- version information as a tuple\n\ hexversion -- version information encoded as a single integer\n\ |