Kaydet (Commit) d459f536 authored tarafından Tim Peters's avatar Tim Peters

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

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