diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-06-16 23:13:09 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-06-16 23:13:09 (GMT) |
commit | bf9ec9ba674c5fe3409b235bd66e9e87fc0bf65c (patch) | |
tree | 604d50458e0994e7cec283417b8b29c783a56b72 | |
parent | 5d730177a9487c5d79cbe185dce5cf4ef98066e0 (diff) | |
download | cpython-bf9ec9ba674c5fe3409b235bd66e9e87fc0bf65c.zip cpython-bf9ec9ba674c5fe3409b235bd66e9e87fc0bf65c.tar.gz cpython-bf9ec9ba674c5fe3409b235bd66e9e87fc0bf65c.tar.bz2 |
add underscores
-rw-r--r-- | Objects/floatobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index e11d758..73d6a1f 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -72,7 +72,7 @@ PyFloat_GetMin(void) static PyTypeObject FloatInfoType = {0, 0, 0, 0, 0, 0}; PyDoc_STRVAR(floatinfo__doc__, -"sys.floatinfo\n\ +"sys.float_info\n\ \n\ A structseq holding information about the float type. It contains low level\n\ information about the precision and internal representation. Please study\n\ @@ -99,7 +99,7 @@ static PyStructSequence_Field floatinfo_fields[] = { }; static PyStructSequence_Desc floatinfo_desc = { - "sys.floatinfo", /* name */ + "sys.float_info", /* name */ floatinfo__doc__, /* doc */ floatinfo_fields, /* fields */ 11 |