Staging
v0.5.1
https://github.com/python/cpython
Revision 12c68b20b71f77f8bcfdf690b4246b7256b9b04a authored by Victor Stinner on 09 February 2014, 00:35:24 UTC, committed by Victor Stinner on 09 February 2014, 00:35:24 UTC
1 parent 87bf277
Raw File
Tip revision: 12c68b20b71f77f8bcfdf690b4246b7256b9b04a authored by Victor Stinner on 09 February 2014, 00:35:24 UTC
asyncio doc: fix gather() doc
Tip revision: 12c68b2
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