summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2017-02-20 21:59:30 (GMT)
committerGitHub <noreply@github.com>2017-02-20 21:59:30 (GMT)
commitd9b3cdd137239a5913de2252c3ce269e35ac63d2 (patch)
tree1b078e6ce4266f80100bbe550b8833e25d1dc880 /Misc
parentce552e2d5c4ff90218fb41847e8ffb1fd3ba3b2d (diff)
downloadcpython-d9b3cdd137239a5913de2252c3ce269e35ac63d2.zip
cpython-d9b3cdd137239a5913de2252c3ce269e35ac63d2.tar.gz
cpython-d9b3cdd137239a5913de2252c3ce269e35ac63d2.tar.bz2
bpo-29602: fix signed zero handling in complex constructor. (#203) (#206)
* Fix incorrect handling of signed zeros for complex-related classes. * Add Misc/NEWS entry. (cherry picked from commit 112ec38c15b388fe025ccb85369a584d218b1160)
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 0fed99b..d5bbd83 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.6.1 release candidate 1?
Core and Builtins
-----------------
+- bpo-29602: Fix incorrect handling of signed zeros in complex constructor for
+ complex subclasses and for inputs having a __complex__ method. Patch
+ by Serhiy Storchaka.
+
- bpo-29347: Fixed possibly dereferencing undefined pointers
when creating weakref objects.