bpo-39573: Fix buildbot failure for tupleobject.c (GH-20391)

diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 1453463..e4c0c91 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -83,7 +83,7 @@
         /* 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);
     }