Commit d459f536 authored by Tim Peters's avatar Tim Peters

code_new(): Wouldn't compile on Windows, because of gcc'ism.

parent 5e897959
......@@ -145,7 +145,7 @@ code_new(PyTypeObject *type, PyObject *args, PyObject *kw)
int nlocals;
int stacksize;
int flags;
PyObject *co = NULL;;
PyObject *co = NULL;
PyObject *code;
PyObject *consts;
PyObject *names, *ournames = NULL;
......
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