summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-02-21 12:57:35 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-02-21 12:57:35 (GMT)
commit82b34c5dbebdd4c39dd310056b20e89d2bed63ed (patch)
tree7a53145072bdd13dbc35fea511dda329b6e0836c /Misc
parent51f1204590ebe00554ad30d6abf0e723e2ee1b65 (diff)
downloadcpython-82b34c5dbebdd4c39dd310056b20e89d2bed63ed.zip
cpython-82b34c5dbebdd4c39dd310056b20e89d2bed63ed.tar.gz
cpython-82b34c5dbebdd4c39dd310056b20e89d2bed63ed.tar.bz2
Issue #5211: Fix complex type to avoid implicit calls to
complex.__coerce__. Thanks Meador Inge for the patch.
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 5750605..9211137 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 4?
Core and Builtins
-----------------
+- Issue #5211: the complex type no longer uses implicit coercion in
+ mixed-type binary arithmetic operations.
+
Library
-------