summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/tupleobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 9794bec..a5e37b0 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -27,7 +27,7 @@ PyObject *
PyTuple_New(register int size)
{
register PyTupleObject *op;
- int i;
+
if (size < 0) {
PyErr_BadInternalCall();
return NULL;