Staging
v0.5.1
https://github.com/python/cpython
Revision 43441c77b5fd9617d7baff1cf3bbc072fef6035b authored by Benjamin Peterson on 06 October 2016, 06:29:16 UTC, committed by Benjamin Peterson on 06 October 2016, 06:29:16 UTC
2 parent s 267941c + 3776836
Raw File
Tip revision: 43441c77b5fd9617d7baff1cf3bbc072fef6035b authored by Benjamin Peterson on 06 October 2016, 06:29:16 UTC
merge 3.5
Tip revision: 43441c7
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