summaryrefslogtreecommitdiffstats
path: root/Modules/itertoolsmodule.c
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2020-03-06 22:53:17 (GMT)
committerGitHub <noreply@github.com>2020-03-06 22:53:17 (GMT)
commit557287075c264d2458cd3e1b45e9b8ee5341e0a1 (patch)
tree6c34331fdbf74476b60b1e32972e360af4985ab6 /Modules/itertoolsmodule.c
parente59334ebc9308b0f3ad048ef293c6b49e6456d1a (diff)
downloadcpython-557287075c264d2458cd3e1b45e9b8ee5341e0a1.zip
cpython-557287075c264d2458cd3e1b45e9b8ee5341e0a1.tar.gz
cpython-557287075c264d2458cd3e1b45e9b8ee5341e0a1.tar.bz2
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Modules/itertoolsmodule.c')
-rw-r--r--Modules/itertoolsmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c
index d545028..9505fd4 100644
--- a/Modules/itertoolsmodule.c
+++ b/Modules/itertoolsmodule.c
@@ -614,7 +614,7 @@ itertools_teedataobject_impl(PyTypeObject *type, PyObject *it,
if (len == LINKCELLS) {
if (next != Py_None) {
- if (Py_TYPE(next) != &teedataobject_type)
+ if (!Py_IS_TYPE(next, &teedataobject_type))
goto err;
assert(tdo->nextlink == NULL);
Py_INCREF(next);