summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-14 04:13:37 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-14 04:13:37 (GMT)
commitc94e2b5c1282e649f763eb9ee8208a0a77268262 (patch)
tree6d619a5339c05cdacedfadebf1366dcd0434a86f /Misc
parentf31b69f9dbfcb0d7f57147abcba47a940bd9430b (diff)
downloadcpython-c94e2b5c1282e649f763eb9ee8208a0a77268262.zip
cpython-c94e2b5c1282e649f763eb9ee8208a0a77268262.tar.gz
cpython-c94e2b5c1282e649f763eb9ee8208a0a77268262.tar.bz2
Now that I've learnt about structseq objects I felt like converting sys.float_info to a structseq. It's
readonly and help(sys.float_info) explains the attributes nicely.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 76104c0..0ef721f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- sys.float_info / PyFloat_GetInfo: The floating point information
+ object was converted from a dict to a specialized structseq object.
+
- Patch #1816: Added sys.flags structseq. It exposes the status of most
command line arguments and PYTHON* environment variables.