Commit 9396673a authored by Guido van Rossum's avatar Guido van Rossum

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

parent 3c8c5981
......@@ -878,7 +878,6 @@ builtin_int(self, args)
PyObject *args;
{
PyObject *v;
PyNumberMethods *nb;
if (!PyArg_ParseTuple(args, "O:int", &v))
return NULL;
......@@ -1371,7 +1370,6 @@ builtin_tuple(self, args)
PyObject *args;
{
PyObject *v;
PySequenceMethods *sqf;
if (!PyArg_ParseTuple(args, "O:tuple", &v))
return 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