[pypy-commit] pypy py3k: kill this line, cmp no longer exists

antocuni noreply at buildbot.pypy.org
Fri Mar 2 10:35:52 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r53092:fcd3bb999210
Date: 2012-03-02 10:31 +0100
http://bitbucket.org/pypy/pypy/changeset/fcd3bb999210/

Log:	kill this line, cmp no longer exists

diff --git a/pypy/module/_collections/test/test_deque.py b/pypy/module/_collections/test/test_deque.py
--- a/pypy/module/_collections/test/test_deque.py
+++ b/pypy/module/_collections/test/test_deque.py
@@ -108,7 +108,6 @@
                 assert (x <= y) == (list(x) <= list(y))
                 assert (x >  y) == (list(x) >  list(y))
                 assert (x >= y) == (list(x) >= list(y))
-                assert cmp(x,y) == cmp(list(x),list(y))
 
     def test_extend(self):
         from _collections import deque


More information about the pypy-commit mailing list