Staging
v0.5.1
https://github.com/python/cpython
Revision a809e4a54007303efb084b85ba53605adaa41b64 authored by Georg Brandl on 25 March 2013, 06:01:37 UTC, committed by Georg Brandl on 25 March 2013, 06:01:37 UTC
2 parent s d08d0b1 + 153866e
Raw File
Tip revision: a809e4a54007303efb084b85ba53605adaa41b64 authored by Georg Brandl on 25 March 2013, 06:01:37 UTC
merge with upstream 3.3 branch
Tip revision: a809e4a
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