Commit 2ead392c authored by Stefan Behnel's avatar Stefan Behnel

no need to use a long in __Pyx_Import() when an int will do

parent a35d94f8
......@@ -11,12 +11,12 @@
/////////////// Import.proto ///////////////
static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, long level); /*proto*/
static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); /*proto*/
/////////////// Import ///////////////
//@substitute: naming
static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, long level) {
static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) {
PyObject *empty_list = 0;
PyObject *module = 0;
PyObject *global_dict = 0;
......
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