mirror of https://github.com/python/cpython
bpo-39573: Fix buildbot failure for tupleobject.c (GH-20391)
This commit is contained in:
parent
ad3252bad9
commit
7d847e29d7
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue