diff options
author | Guido van Rossum <guido@python.org> | 2003-04-17 14:55:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-04-17 14:55:42 (GMT) |
commit | d3ab37f1df86b86d340360412331078a1da63d58 (patch) | |
tree | 27d47aa3323156dda762db527d6247b0f86b6367 /Include/pgen.h | |
parent | 6e5be22d9747b7d8ebc2b09a3d5492f00ab296eb (diff) | |
download | cpython-d3ab37f1df86b86d340360412331078a1da63d58.zip cpython-d3ab37f1df86b86d340360412331078a1da63d58.tar.gz cpython-d3ab37f1df86b86d340360412331078a1da63d58.tar.bz2 |
Changes from Jonathan Riehl to allow his pgen extension (PEP 269) to
work. This includes some more code that used to be part of pgen in
the main parser; I'm okay with that. I'll see if the Windows build
needs work next.
Diffstat (limited to 'Include/pgen.h')
-rw-r--r-- | Include/pgen.h | 18 |
1 files changed, 18 insertions, 0 deletions
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 */ |