Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e07b78c commit 4b19a14Copy full SHA for 4b19a14
1 file changed
README.rst
@@ -192,7 +192,7 @@ PyThreadState
192
// Not available on PyPy
193
PyFrameObject* PyThreadState_GetFrame(PyThreadState *tstate);
194
PyInterpreterState* PyThreadState_GetInterpreter(PyThreadState *tstate);
195
- // Availability: Python 3.7
+ // Availability: Python 3.7. Not available on PyPy.
196
uint64_t PyThreadState_GetID(PyThreadState *tstate);
197
198
PyInterpreterState
@@ -207,8 +207,9 @@ GC protocol
207
208
::
209
210
+ // Not available on PyPy.
211
int PyObject_GC_IsTracked(PyObject* obj);
- // Availability: Python 3.4
212
+ // Availability: Python 3.4. Not available on PyPy.
213
int PyObject_GC_IsFinalized(PyObject *obj);
214
215
Module helper
0 commit comments