diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-11-13 20:11:55 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-11-13 20:11:55 (GMT) |
commit | 88d21319ba824b4bd05ce1f9d26a80e3c2f388f6 (patch) | |
tree | 9481a8bdd382a525de8cabdab0ae2730118a923a | |
parent | 19c10caaa41be087d0bed42a3654eaf8541164f9 (diff) | |
download | cpython-88d21319ba824b4bd05ce1f9d26a80e3c2f388f6.zip cpython-88d21319ba824b4bd05ce1f9d26a80e3c2f388f6.tar.gz cpython-88d21319ba824b4bd05ce1f9d26a80e3c2f388f6.tar.bz2 |
new_code(): The last patch to this left behind an unreferenced local;
deleted its declaration.
-rw-r--r-- | Modules/newmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/newmodule.c b/Modules/newmodule.c index 6c29fe4..252637a 100644 --- a/Modules/newmodule.c +++ b/Modules/newmodule.c @@ -124,7 +124,6 @@ new_code(PyObject* unused, PyObject* args) PyObject* name; int firstlineno; PyObject* lnotab; - PyBufferProcs *pb; if (!PyArg_ParseTuple(args, "iiiiSO!O!O!SSiS|O!O!:code", &argcount, &nlocals, &stacksize, &flags, |