Commit 5b67faba authored by Matti Picus's avatar Matti Picus Committed by GitHub

PyPy: do not call __Pyx_Coroutine_del (tp_finalize) since it resurrects dead objects (GH-4477)

parent 59e6c294
......@@ -1952,7 +1952,7 @@ static PyTypeObject __pyx_IterableCoroutineType_type = {
__Pyx_Coroutine_del, /*tp_del*/
#endif
0, /*tp_version_tag*/
#if PY_VERSION_HEX >= 0x030400a1
#if PY_VERSION_HEX >= 0x030400a1 && !CYTHON_COMPILING_IN_PYPY
__Pyx_Coroutine_del, /*tp_finalize*/
#endif
#if PY_VERSION_HEX >= 0x030800b1
......
......@@ -57,6 +57,7 @@ run.async_iter_pep492
run.embedsignatures
run.py35_asyncio_async_def
run.asyncio_generators
run.py35_pep492_interop
# gc issue?
external_ref_reassignment
......
......@@ -5,9 +5,5 @@
run.fastcall
memslice
# """Fatal RPython error: NotImplementedError
# Aborted (core dumped)"""
run.py35_pep492_interop
# gc issue?
memoryview_in_subclasses
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment