Author: mattip <matti.pi...@gmail.com>
Branch: cpyext-ext
Changeset: r83496:bcaba584080e
Date: 2016-04-01 16:48 +0300
http://bitbucket.org/pypy/pypy/changeset/bcaba584080e/

Log:    fix strategy for zip()

diff --git a/pypy/module/cpyext/sequence.py b/pypy/module/cpyext/sequence.py
--- a/pypy/module/cpyext/sequence.py
+++ b/pypy/module/cpyext/sequence.py
@@ -321,16 +321,16 @@
         raise NotImplementedError
 
     def getitems_bytes(self, w_list):
-        raise NotImplementedError
+        return None
 
     def getitems_unicode(self, w_list):
-        raise NotImplementedError
+        return None
 
     def getitems_int(self, w_list):
-        raise NotImplementedError
+        return None
 
     def getitems_float(self, w_list):
-        raise NotImplementedError
+        return None
 
     def getstorage_copy(self, w_list):
         raise NotImplementedError
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to