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 7a0f8fb commit 9f19519Copy full SHA for 9f19519
uvloop/includes/python.pxd
@@ -3,10 +3,10 @@ cdef extern from "Python.h":
3
4
unicode PyUnicode_FromString(const char *)
5
6
- void* PyMem_RawMalloc(size_t n)
7
- void* PyMem_RawRealloc(void *p, size_t n)
8
- void* PyMem_RawCalloc(size_t nelem, size_t elsize)
9
- void PyMem_RawFree(void *p)
+ void* PyMem_RawMalloc(size_t n) nogil
+ void* PyMem_RawRealloc(void *p, size_t n) nogil
+ void* PyMem_RawCalloc(size_t nelem, size_t elsize) nogil
+ void PyMem_RawFree(void *p) nogil
10
11
object PyUnicode_EncodeFSDefault(object)
12
void PyErr_SetInterrupt() nogil
0 commit comments