Author: Manuel Jacob <[email protected]>
Branch: py3.3
Changeset: r76178:ebdd56200c8a
Date: 2015-02-27 17:08 +0100
http://bitbucket.org/pypy/pypy/changeset/ebdd56200c8a/

Log:    _abcoll was renamed to collections.abc.

diff --git a/pypy/objspace/std/test/test_iterobject.py 
b/pypy/objspace/std/test/test_iterobject.py
--- a/pypy/objspace/std/test/test_iterobject.py
+++ b/pypy/objspace/std/test/test_iterobject.py
@@ -91,8 +91,8 @@
         raises(TypeError, len, iter(iterable))
 
     def test_no_len_on_UserList_iter_reversed(self):
-        import sys, _abcoll
-        sys.modules['collections'] = _abcoll
+        import sys, collections.abc
+        sys.modules['collections'] = collections.abc
         class UserList(object):
             def __init__(self, i):
                 self.i = i
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to