[Python-checkins] r73457 - python/trunk/Objects/floatobject.c

benjamin.peterson python-checkins at python.org
Wed Jun 17 01:13:09 CEST 2009


Author: benjamin.peterson
Date: Wed Jun 17 01:13:09 2009
New Revision: 73457

Log:
add underscores

Modified:
   python/trunk/Objects/floatobject.c

Modified: python/trunk/Objects/floatobject.c
==============================================================================
--- python/trunk/Objects/floatobject.c	(original)
+++ python/trunk/Objects/floatobject.c	Wed Jun 17 01:13:09 2009
@@ -72,7 +72,7 @@
 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_Desc floatinfo_desc = {
-	"sys.floatinfo",	/* name */
+	"sys.float_info",	/* name */
 	floatinfo__doc__,	/* doc */
 	floatinfo_fields,	/* fields */
 	11


More information about the Python-checkins mailing list