Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 6c1aa6ba30e38fb9708526e27f9158162c37d909 authored by Larry Hastings on 25 June 2016, 21:11:09 UTC
Version number bump for 3.5.2 final.
Tip revision: 6c1aa6b
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