Commit 1c3fd875 authored by Tim Peters's avatar Tim Peters

PyTuple_New(): vrbl i no longer referenced, so removed it (which kills

off a new compiler wng under MSVC6).
parent 66803417
......@@ -27,7 +27,7 @@ PyObject *
PyTuple_New(register int size)
{
register PyTupleObject *op;
int i;
if (size < 0) {
PyErr_BadInternalCall();
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