Staging
v0.8.1
https://github.com/python/cpython
Revision 91fd1599358a1764e805f7ccfb6a8cb2ad558b7e authored by Benjamin Peterson on 10 May 2015, 17:13:10 UTC, committed by Benjamin Peterson on 10 May 2015, 17:13:10 UTC
1 parent 72c0141
Raw File
Tip revision: 91fd1599358a1764e805f7ccfb6a8cb2ad558b7e authored by Benjamin Peterson on 10 May 2015, 17:13:10 UTC
update pydoc-topics
Tip revision: 91fd159
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