Disable the parser hacks that enabled the "yield" keyword using a future

statement.
This commit is contained in:
Neil Schemenauer 2002-03-22 23:53:36 +00:00
parent 12a6d942d8
commit c24ea08644
5 changed files with 25 additions and 11 deletions

View file

@ -17,7 +17,9 @@ typedef struct {
int expected;
} perrdetail;
#if 0
#define PyPARSE_YIELD_IS_KEYWORD 0x0001
#endif
extern DL_IMPORT(node *) PyParser_ParseString(char *, grammar *, int,
perrdetail *);