summaryrefslogtreecommitdiff
path: root/Parser/grammar1.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-12-04 03:18:48 +0000
committerTim Peters <tim.peters@gmail.com>2001-12-04 03:18:48 +0000
commit1ca12961579c6a27597fc95b610b01af37734827 (patch)
treeada4e6065f27ec8f8260a8799009188913abcd87 /Parser/grammar1.c
parentdb5a93cd6adcdf21ade2d7299a42cbeb475e656f (diff)
downloadcpython-git-1ca12961579c6a27597fc95b610b01af37734827.tar.gz
The parser doesn't need its own implementation of assert, and having its
own interfered with including Python.h. Remove Python's assert.h.
Diffstat (limited to 'Parser/grammar1.c')
-rw-r--r--Parser/grammar1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/grammar1.c b/Parser/grammar1.c
index b2631b785d..912d3872d2 100644
--- a/Parser/grammar1.c
+++ b/Parser/grammar1.c
@@ -1,8 +1,8 @@
/* Grammar subroutines needed by parser */
+#include "Python.h"
#include "pgenheaders.h"
-#include "assert.h"
#include "grammar.h"
#include "token.h"