Skip to content

Commit

Permalink
bpo-39573: Fix buildbot failure for tupleobject.c (pythonGH-20391)
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 authored May 25, 2020
1 parent ad3252b commit 7d847e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/tupleobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ tuple_alloc(Py_ssize_t size)
/* Inline PyObject_InitVar */
#ifdef Py_TRACE_REFS
Py_SIZE(op) = size;
Py_TYPE(op) = &PyTuple_Type;
Py_SET_TYPE(op, &PyTuple_Type);
#endif
_Py_NewReference((PyObject *)op);
}
Expand Down

0 comments on commit 7d847e2

Please sign in to comment.