summaryrefslogtreecommitdiffstats
path: root/Include/frameobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/frameobject.h')
-rw-r--r--Include/frameobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h
index a38a85d..5bf94c3 100644
--- a/Include/frameobject.h
+++ b/Include/frameobject.h
@@ -73,7 +73,7 @@ PyFrameObject * PyFrame_New
/* Tuple access macros */
-#ifdef NDEBUG
+#ifndef DEBUG
#define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
#define GETITEMNAME(v, i) \
PyString_AS_STRING((PyStringObject *)GETITEM((v), (i)))