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/pgen.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/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 47c817f..55ce7a1 100644 --- a/Parser/pgen.c +++ b/Parser/pgen.c @@ -4,8 +4,8 @@ /* For a description, see the comments at end of this file */ +#include "Python.h" #include "pgenheaders.h" -#include "assert.h" #include "token.h" #include "node.h" #include "grammar.h" |