Author: Armin Rigo <ar...@tunes.org>
Branch: cpyext-avoid-roundtrip
Changeset: r93442:614a92d3bfbd
Date: 2017-12-16 10:33 +0100
http://bitbucket.org/pypy/pypy/changeset/614a92d3bfbd/

Log:    This should be fixed now

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
@@ -28,10 +28,6 @@
 ## Then the macro PyTuple_GET_ITEM can be implemented like CPython.
 ##
 
-# CCC: we have a problem in the branch: some of the functions defined in C,
-# like PyTuple_New, might call PyErr_*, but since these are implemented in
-# RPython, they are not GIL-safe. We need to think about it :(
-
 PyTupleObjectStruct = lltype.ForwardReference()
 PyTupleObject = lltype.Ptr(PyTupleObjectStruct)
 ObjectItems = rffi.CArray(PyObject)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to