summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-01 11:20:10 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-01 11:20:10 (GMT)
commitdfdfaab1c54425113e07b623f7dc38f60762cee1 (patch)
tree0ad4a7143ebb830c8879cc7cc686ca67dbe00e13 /Misc
parent9f6d4ceb43583885cd090ff6adb87d31b3ac9c99 (diff)
downloadcpython-dfdfaab1c54425113e07b623f7dc38f60762cee1.zip
cpython-dfdfaab1c54425113e07b623f7dc38f60762cee1.tar.gz
cpython-dfdfaab1c54425113e07b623f7dc38f60762cee1.tar.bz2
Feature #1534
Added PyFloat_GetMax(), PyFloat_GetMin() and PyFloat_GetInfo() to the float API. Added a dictionary sys.float_info with information about the internal floating point type to the sys module.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4fa85c6..2023143 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
+- Issue #1534: Added ``PyFloat_GetMax()``, ``PyFloat_GetMin()`` and
+ ``PyFloat_GetInfo()`` to the float API.
+
- Issue #1521: On 64bit platforms, using PyArgs_ParseTuple with the t# of w#
format code incorrectly truncated the length to an int, even when
PY_SSIZE_T_CLEAN is set. The str.decode method used to return incorrect
@@ -301,6 +304,9 @@ Core and builtins
Library
-------
+- Issue #1534: Added a dictionary sys.float_info with information about the
+ internal floating point type to the sys module.
+
- Issue 1429818: patch for trace and doctest modules so they play nicely
together.