2 /* Parser-tokenizer link interface */
21 #define PyPARSE_YIELD_IS_KEYWORD 0x0001
24 #define PyPARSE_DONT_IMPLY_DEDENT 0x0002
27 #define PyPARSE_WITH_IS_KEYWORD 0x0003
30 #define PyPARSE_PRINT_IS_FUNCTION 0x0004
31 #define PyPARSE_UNICODE_LITERALS 0x0008
35 PyAPI_FUNC(node
*) PyParser_ParseString(const char *, grammar
*, int,
37 PyAPI_FUNC(node
*) PyParser_ParseFile (FILE *, const char *, grammar
*, int,
38 char *, char *, perrdetail
*);
40 PyAPI_FUNC(node
*) PyParser_ParseStringFlags(const char *, grammar
*, int,
42 PyAPI_FUNC(node
*) PyParser_ParseFileFlags(FILE *, const char *, grammar
*,
45 PyAPI_FUNC(node
*) PyParser_ParseFileFlagsEx(FILE *, const char *, grammar
*,
49 PyAPI_FUNC(node
*) PyParser_ParseStringFlagsFilename(const char *,
53 PyAPI_FUNC(node
*) PyParser_ParseStringFlagsFilenameEx(const char *,
58 /* Note that he following function is defined in pythonrun.c not parsetok.c. */
59 PyAPI_FUNC(void) PyParser_SetError(perrdetail
*);
64 #endif /* !Py_PARSETOK_H */