summaryrefslogtreecommitdiffstats
path: root/Objects/tupleobject.c
diff options
context:
space:
mode:
authorEddie Elizondo <eduardo.elizondorueda@gmail.com>2018-02-22 04:55:18 (GMT)
committerBenjamin Peterson <benjamin@python.org>2018-02-22 04:55:18 (GMT)
commit745dc65b17b3936e3f9f4099f735f174d30c4e0c (patch)
tree23b81a11c1e61eb12828acfd356e85866a7edf24 /Objects/tupleobject.c
parentc84cf6c03fce1fb73bfaf91d7909f1c2708f14a2 (diff)
downloadcpython-745dc65b17b3936e3f9f4099f735f174d30c4e0c.zip
cpython-745dc65b17b3936e3f9f4099f735f174d30c4e0c.tar.gz
cpython-745dc65b17b3936e3f9f4099f735f174d30c4e0c.tar.bz2
closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800)
Diffstat (limited to 'Objects/tupleobject.c')
-rw-r--r--Objects/tupleobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 39d43dd..9bb91a5 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -45,7 +45,7 @@ static void
show_track(void)
{
PyInterpreterState *interp = PyThreadState_GET()->interp;
- if (!inter->core_config.show_alloc_count) {
+ if (!interp->core_config.show_alloc_count) {
return;
}