commit | dffe4c07095e0c693e094d3c140e85a68bd8128e | [log] [tgz] |
---|---|---|
author | Andy Lester <andy@petdance.com> | Wed Mar 04 07:15:20 2020 -0600 |
committer | GitHub <noreply@github.com> | Wed Mar 04 14:15:20 2020 +0100 |
tree | 1f58f4c2f76d6f630c5279a7b72d31bb6b4d8873 | |
parent | 22a9a546ff3bf2a63d77ca1e5494e758bc59132f [diff] [blame] |
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index d114bd6..92374cc 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.c
@@ -237,7 +237,7 @@ #if PyTuple_MAXSAVESIZE > 0 if (len < PyTuple_MAXSAVESIZE && numfree[len] < PyTuple_MAXFREELIST && - Py_TYPE(op) == &PyTuple_Type) + Py_IS_TYPE(op, &PyTuple_Type)) { op->ob_item[0] = (PyObject *) free_list[len]; numfree[len]++;