summaryrefslogtreecommitdiff
path: root/Include/frameobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-24 20:43:12 +0000
committerGuido van Rossum <guido@python.org>1996-05-24 20:43:12 +0000
commit1262295e1e53f84441625ece957e09a631fbe12a (patch)
treec1d620a5900fffd5f48087af6ad7949dbeef4d02 /Include/frameobject.h
parent89115e6961d9dfbb10d03c920b2ad142cd2b86f4 (diff)
downloadcpython-1262295e1e53f84441625ece957e09a631fbe12a.tar.gz
don't use NDEBUG
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 a38a85d542..5bf94c38e4 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)))