summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-11-15 13:58:49 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-11-15 13:58:49 (GMT)
commit6f1d04945b98cd66b95131833942526c85bbb867 (patch)
tree7c6bdef12d242b18389d4c46e6c984aadadf3b98 /Misc
parentf4243f6d1f1a7512751d26235a492c24a9a4c76c (diff)
downloadcpython-6f1d04945b98cd66b95131833942526c85bbb867.zip
cpython-6f1d04945b98cd66b95131833942526c85bbb867.tar.gz
cpython-6f1d04945b98cd66b95131833942526c85bbb867.tar.bz2
Issue #6970: Remove redundant calls made when comparing objects.
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 1577baf..9480d9f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #6970: Remove redundant calls when comparing objects that don't
+ implement the relevant rich comparison methods.
+
- Issue #7298: fixes for range and reversed(range(...)). Iteration
over range(a, b, c) incorrectly gave an empty iterator when a, b and
c fit in C long but the length of the range did not. Also fix