diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-12-04 03:18:48 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-12-04 03:18:48 (GMT) |
commit | 1ca12961579c6a27597fc95b610b01af37734827 (patch) | |
tree | ada4e6065f27ec8f8260a8799009188913abcd87 /Parser/grammar.c | |
parent | db5a93cd6adcdf21ade2d7299a42cbeb475e656f (diff) | |
download | cpython-1ca12961579c6a27597fc95b610b01af37734827.zip cpython-1ca12961579c6a27597fc95b610b01af37734827.tar.gz cpython-1ca12961579c6a27597fc95b610b01af37734827.tar.bz2 |
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/grammar.c')
-rw-r--r-- | Parser/grammar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/grammar.c b/Parser/grammar.c index 2a0574d..2cc15b58 100644 --- a/Parser/grammar.c +++ b/Parser/grammar.c @@ -1,11 +1,11 @@ /* Grammar implementation */ +#include "Python.h" #include "pgenheaders.h" #include <ctype.h> -#include "assert.h" #include "token.h" #include "grammar.h" |