[pypy-commit] pypy py3.5: fix for tests

arigo pypy.commits at gmail.com
Fri Dec 16 06:54:57 EST 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r89095:31775eeb3581
Date: 2016-12-16 12:54 +0100
http://bitbucket.org/pypy/pypy/changeset/31775eeb3581/

Log:	fix for tests

diff --git a/pypy/objspace/fake/objspace.py b/pypy/objspace/fake/objspace.py
--- a/pypy/objspace/fake/objspace.py
+++ b/pypy/objspace/fake/objspace.py
@@ -349,6 +349,9 @@
     def is_generator(self, w_obj):
         return NonConstant(False)
 
+    def is_iterable(self, w_obj):
+        return NonConstant(False)
+
     def lookup_in_type(self, w_type, name):
         return w_some_obj()
 


More information about the pypy-commit mailing list