diff options
author | Guido van Rossum <guido@python.org> | 1996-12-30 16:17:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-30 16:17:54 (GMT) |
commit | 408027ea4635de5c892b28c4fdf41840eb9089a4 (patch) | |
tree | 26a28bfbfa94697565ce4440da84772e2bb96acb /Parser/pgen.c | |
parent | a0dc1c4a613f11e1b6e20fa25658823533ca201b (diff) | |
download | cpython-408027ea4635de5c892b28c4fdf41840eb9089a4.zip cpython-408027ea4635de5c892b28c4fdf41840eb9089a4.tar.gz cpython-408027ea4635de5c892b28c4fdf41840eb9089a4.tar.bz2 |
Rename DEBUG macro to Py_DEBUG
Diffstat (limited to 'Parser/pgen.c')
-rw-r--r-- | Parser/pgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/pgen.c b/Parser/pgen.c index c5a0618..9668630 100644 --- a/Parser/pgen.c +++ b/Parser/pgen.c @@ -166,7 +166,7 @@ addnfa(gr, name) return nf; } -#ifdef DEBUG +#ifdef Py_DEBUG static char REQNFMT[] = "metacompile: less than %d children\n"; |