summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-06-05 11:52:24 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-06-05 11:52:24 (GMT)
commit23f0d6b57bb9427df0ab2305c47f14b9c092e0fe (patch)
treed0171be9015e9218b2d8a4ff2fb89bbf0cc95cf5 /Lib
parenta441287f79ac793a0fe046b85f2e5e12364c6a84 (diff)
downloadcpython-23f0d6b57bb9427df0ab2305c47f14b9c092e0fe.zip
cpython-23f0d6b57bb9427df0ab2305c47f14b9c092e0fe.tar.gz
cpython-23f0d6b57bb9427df0ab2305c47f14b9c092e0fe.tar.bz2
Issue #8627: remove out-of-date warning about overriding __cmp__
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_descr.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index 2fdd62f..7e9b62b 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -4621,7 +4621,6 @@ def test_main():
deprecations += [
("classic (int|long) division", DeprecationWarning),
("coerce.. not supported", DeprecationWarning),
- ("Overriding __cmp__ ", DeprecationWarning),
(".+__(get|set|del)slice__ has been removed", DeprecationWarning)]
with test_support.check_warnings(*deprecations):
# Run all local test cases, with PTypesLongInitTest first.