9 lines
233 B
Cython
9 lines
233 B
Cython
from cpython.ref cimport PyObject
|
|
from libcpp cimport bool
|
|
|
|
cdef extern from "capnp/helpers/capabilityHelper.h":
|
|
void reraise_kj_exception()
|
|
cdef cppclass PyRefCounter:
|
|
PyRefCounter(PyObject *)
|
|
PyObject * obj
|