From: Tim Peters Date: Tue, 13 Nov 2001 20:11:55 +0000 (+0000) Subject: new_code(): The last patch to this left behind an unreferenced local; X-Git-Tag: v2.2.1c1~781 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=88d21319ba824b4bd05ce1f9d26a80e3c2f388f6;p=thirdparty%2FPython%2Fcpython.git new_code(): The last patch to this left behind an unreferenced local; deleted its declaration. --- diff --git a/Modules/newmodule.c b/Modules/newmodule.c index 6c29fe431500..252637ab524e 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,