Staging
v0.5.1
https://github.com/python/cpython
Revision 9a47ed883943589c68987a41e5662012131b3536 authored by Zachary Ware on 09 August 2015, 03:03:27 UTC, committed by Zachary Ware on 09 August 2015, 03:03:27 UTC
1 parent 3a7ffa7
Raw File
Tip revision: 9a47ed883943589c68987a41e5662012131b3536 authored by Zachary Ware on 09 August 2015, 03:03:27 UTC
regrtest: the 'bad' and 'environment_changed' sets of tests don't intersect anymore
Tip revision: 9a47ed8
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