[pypy-commit] pypy cpyext-avoid-roundtrip: missing import

antocuni pypy.commits at gmail.com
Sat Oct 14 09:57:45 EDT 2017


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: cpyext-avoid-roundtrip
Changeset: r92758:59c2a72f8c1f
Date: 2017-10-14 00:24 +0200
http://bitbucket.org/pypy/pypy/changeset/59c2a72f8c1f/

Log:	missing import

diff --git a/pypy/module/cpyext/tupleobject.py b/pypy/module/cpyext/tupleobject.py
--- a/pypy/module/cpyext/tupleobject.py
+++ b/pypy/module/cpyext/tupleobject.py
@@ -5,7 +5,7 @@
     cpython_api, Py_ssize_t, build_type_checkers_flags,
     PyVarObjectFields, cpython_struct, bootstrap_function, slot_function)
 from pypy.module.cpyext.pyobject import (
-    PyObject, PyObjectP, make_ref, from_ref, decref, incref,
+    PyObject, PyObjectP, make_ref, from_ref, decref, incref, BaseCpyTypedescr,
     track_reference, make_typedescr, get_typedescr, pyobj_has_w_obj)
 from pypy.module.cpyext.state import State
 from pypy.module.cpyext.pyerrors import PyErr_BadInternalCall


More information about the pypy-commit mailing list