Commit 160ca319 authored by Stefan Behnel's avatar Stefan Behnel

Split prototype part off a utility function to move the actual implementation...

Split prototype part off a utility function to move the actual implementation to the end of the C file.
parent 831ce22f
...@@ -427,7 +427,12 @@ static CYTHON_INLINE PyObject* __Pyx_PyDict_ViewItems(PyObject* d) { ...@@ -427,7 +427,12 @@ static CYTHON_INLINE PyObject* __Pyx_PyDict_ViewItems(PyObject* d) {
return CALL_UNBOUND_METHOD(PyDict_Type, "viewitems", d); return CALL_UNBOUND_METHOD(PyDict_Type, "viewitems", d);
} }
//////////////////// pyfrozenset_new.proto //////////////////// //////////////////// pyfrozenset_new.proto ////////////////////
static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it);
//////////////////// pyfrozenset_new ////////////////////
//@substitute: naming //@substitute: naming
static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it) { static CYTHON_INLINE PyObject* __Pyx_PyFrozenSet_New(PyObject* it) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment