Author: Armin Rigo <ar...@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() _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit