summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-01-04 01:10:28 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-01-04 01:10:28 (GMT)
commitaea4428fdc8a9f1a77ddc1099442ca5db9db7e78 (patch)
tree3b667c459507fc0c88199bd7eb6b1feded04ec9c /Misc
parent66c741f5fbe177d034167e69a658ec261b710f5a (diff)
downloadcpython-aea4428fdc8a9f1a77ddc1099442ca5db9db7e78.zip
cpython-aea4428fdc8a9f1a77ddc1099442ca5db9db7e78.tar.gz
cpython-aea4428fdc8a9f1a77ddc1099442ca5db9db7e78.tar.bz2
Merged revisions 77292-77293 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r77292 | benjamin.peterson | 2010-01-03 18:43:01 -0600 (Sun, 03 Jan 2010) | 1 line do correct lookup of the __complex__ method ........ r77293 | benjamin.peterson | 2010-01-03 19:00:47 -0600 (Sun, 03 Jan 2010) | 1 line factor out __complex__ lookup code to fix another case ........
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 815e392..1f29728 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
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.