summaryrefslogtreecommitdiffstats
path: root/Include/frameobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-30 16:17:54 (GMT)
committerGuido van Rossum <guido@python.org>1996-12-30 16:17:54 (GMT)
commit408027ea4635de5c892b28c4fdf41840eb9089a4 (patch)
tree26a28bfbfa94697565ce4440da84772e2bb96acb /Include/frameobject.h
parenta0dc1c4a613f11e1b6e20fa25658823533ca201b (diff)
downloadcpython-408027ea4635de5c892b28c4fdf41840eb9089a4.zip
cpython-408027ea4635de5c892b28c4fdf41840eb9089a4.tar.gz
cpython-408027ea4635de5c892b28c4fdf41840eb9089a4.tar.bz2
Rename DEBUG macro to Py_DEBUG
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 40dd653..85c1f4c 100644
--- a/Include/frameobject.h
+++ b/Include/frameobject.h
@@ -80,7 +80,7 @@ PyFrameObject * PyFrame_New
/* Tuple access macros */
-#ifndef DEBUG
+#ifndef Py_DEBUG
#define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
#define GETITEMNAME(v, i) \
PyString_AS_STRING((PyStringObject *)GETITEM((v), (i)))