Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 4b47a5b6ba66b02df9392feb97b8ead916f8c1fa authored by Ned Deily on 27 June 2020, 08:35:53 UTC
3.7.8
Tip revision: 4b47a5b
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