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

off a new compiler wng under MSVC6).
This commit is contained in:
Tim Peters 2004-03-21 21:35:41 +00:00
parent 668034173b
commit 1c3fd875b9
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ PyObject *
PyTuple_New(register int size)
{
register PyTupleObject *op;
int i;
if (size < 0) {
PyErr_BadInternalCall();
return NULL;