diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/parsetok.h | 4 | ||||
-rw-r--r-- | Include/pgen.h | 18 |
2 files changed, 22 insertions, 0 deletions
diff --git a/Include/parsetok.h b/Include/parsetok.h index 99a79b7..b788566 100644 --- a/Include/parsetok.h +++ b/Include/parsetok.h @@ -38,6 +38,10 @@ PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(const char *, const char *, grammar *, int, perrdetail *, int); + +/* Note that he following function is defined in pythonrun.c not parsetok.c. */ +PyAPI_FUNC(void) PyParser_SetError(perrdetail *); + #ifdef __cplusplus } #endif diff --git a/Include/pgen.h b/Include/pgen.h new file mode 100644 index 0000000..8a325ed --- /dev/null +++ b/Include/pgen.h @@ -0,0 +1,18 @@ +#ifndef Py_PGEN_H +#define Py_PGEN_H +#ifdef __cplusplus +extern "C" { +#endif + + +/* Parser generator interface */ + +extern grammar *meta_grammar(void); + +struct _node; +extern grammar *pgen(struct _node *); + +#ifdef __cplusplus +} +#endif +#endif /* !Py_PGEN_H */ |