mirror of https://github.com/python/cpython
PyTuple_New(): vrbl i no longer referenced, so removed it (which kills
off a new compiler wng under MSVC6).
This commit is contained in:
parent
668034173b
commit
1c3fd875b9
|
@ -27,7 +27,7 @@ PyObject *
|
|||
PyTuple_New(register int size)
|
||||
{
|
||||
register PyTupleObject *op;
|
||||
int i;
|
||||
|
||||
if (size < 0) {
|
||||
PyErr_BadInternalCall();
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue