summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-01-04 00:43:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-01-04 00:43:01 (GMT)
commitecdae19fbe9506fffe6616d86f3bbf4a1858f3e2 (patch)
treec4ce3ae37922e1b9cfff5f835e2c2b55ad306ce1 /Misc/NEWS
parent37559a085b423e4f2c1d512fb8296cae27c9317b (diff)
downloadcpython-ecdae19fbe9506fffe6616d86f3bbf4a1858f3e2.zip
cpython-ecdae19fbe9506fffe6616d86f3bbf4a1858f3e2.tar.gz
cpython-ecdae19fbe9506fffe6616d86f3bbf4a1858f3e2.tar.bz2
do correct lookup of the __complex__ method
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cb39331..06fb9ee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 2?
Core and Builtins
-----------------
+- The __complex__ method is now looked up on the class of instances to make it
+ consistent with other special methods.
+
- Issue #7462: Implement the stringlib fast search algorithm for the `rfind`,
`rindex`, `rsplit` and `rpartition` methods. Patch by Florent Xicluna.