Author: Antonio Cuni <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit