Remove a few unused locals (I love VC++ for this!).

This commit is contained in:
Guido van Rossum 1998-05-29 02:59:00 +00:00
parent 3c8c5981b1
commit 9396673a58
1 changed files with 0 additions and 2 deletions

View File

@ -878,7 +878,6 @@ builtin_int(self, args)
PyObject *args; PyObject *args;
{ {
PyObject *v; PyObject *v;
PyNumberMethods *nb;
if (!PyArg_ParseTuple(args, "O:int", &v)) if (!PyArg_ParseTuple(args, "O:int", &v))
return NULL; return NULL;
@ -1371,7 +1370,6 @@ builtin_tuple(self, args)
PyObject *args; PyObject *args;
{ {
PyObject *v; PyObject *v;
PySequenceMethods *sqf;
if (!PyArg_ParseTuple(args, "O:tuple", &v)) if (!PyArg_ParseTuple(args, "O:tuple", &v))
return NULL; return NULL;