10 lines
320 B
Cython
10 lines
320 B
Cython
from cpython.ref cimport PyObject
|
|
|
|
cdef extern from "../helpers/capabilityHelper.h":
|
|
cppclass PythonInterfaceDynamicImpl:
|
|
PythonInterfaceDynamicImpl(PyObject *)
|
|
|
|
cdef extern from "../helpers/capabilityHelper.h":
|
|
void reraise_kj_exception()
|
|
cdef cppclass PyRefCounter:
|
|
PyRefCounter(PyObject *) |