Staging
v0.5.1
https://github.com/python/cpython
Revision 8f51bb436f8adfd139cad046b91cd462c7f27f6c authored by Ned Deily on 19 September 2017, 05:09:03 UTC, committed by Ned Deily on 19 September 2017, 05:09:03 UTC
1 parent 450ceea
Raw File
Tip revision: 8f51bb436f8adfd139cad046b91cd462c7f27f6c authored by Ned Deily on 19 September 2017, 05:09:03 UTC
Bump to 3.6.0a1
Tip revision: 8f51bb4
pgen.h
#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 */
back to top