[pypy-commit] pypy default: fix merge from grafting issue2968

mattip pypy.commits at gmail.com
Thu Mar 14 11:19:01 EDT 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r96313:d3aefbf6dae7
Date: 2019-03-14 17:15 +0200
http://bitbucket.org/pypy/pypy/changeset/d3aefbf6dae7/

Log:	fix merge from grafting issue2968

diff --git a/pypy/module/cpyext/test/test_tupleobject.py b/pypy/module/cpyext/test/test_tupleobject.py
--- a/pypy/module/cpyext/test/test_tupleobject.py
+++ b/pypy/module/cpyext/test/test_tupleobject.py
@@ -231,7 +231,6 @@
         # issue 2968: creating a subclass of tuple in C led to recursion
         # since the default tp_new needs to build a w_obj, but that needs
         # to call space.len_w, which needs to call tp_new.
-        module = self.import_module('THPSize')
         module = self.import_extension('foo', [
             ("get_size", "METH_NOARGS",
              """


More information about the pypy-commit mailing list