mirror of https://github.com/MagicStack/uvloop.git
6 lines
166 B
Cython
6 lines
166 B
Cython
|
from cpython.pycapsule cimport PyCapsule_GetPointer
|
||
|
|
||
|
|
||
|
def capsule_equals(cap1, cap2):
|
||
|
return PyCapsule_GetPointer(cap1, NULL) == PyCapsule_GetPointer(cap2, NULL)
|