summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-30 12:12:23 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-12-30 12:12:23 (GMT)
commit99d652ef6602995208278eaecebfe1e2f813f5a0 (patch)
treed6dfd0b0787cd23b76e6a9950c55e286f0f6ac6f /Misc
parent569e61f35196cb765eb9940f75b27bb765e73073 (diff)
downloadcpython-99d652ef6602995208278eaecebfe1e2f813f5a0.zip
cpython-99d652ef6602995208278eaecebfe1e2f813f5a0.tar.gz
cpython-99d652ef6602995208278eaecebfe1e2f813f5a0.tar.bz2
Issue #7534: Fix handling of nans, infinities, and negative zero in **
operator, on IEEE 754 platforms. Thanks Marcos Donolo for original patch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 627ba07..3098505 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.7 alpha 2?
Core and Builtins
-----------------
+- Issue #7534: Fix handling of IEEE specials (infinities, nans,
+ negative zero) in ** operator. The behaviour now conforms to that
+ described in C99 Annex F.
+
- Issue #7579: the msvcrt module now has docstrings for all its functions.
- Issue #7413: Passing '\0' as the separator to datetime.datetime.isoformat()