Staging
v0.8.1
https://github.com/python/cpython
Revision e7901c5ebbf81bd07203433f20224077d8020a5e authored by Florent Xicluna on 01 March 2010, 20:45:01 UTC, committed by Florent Xicluna on 01 March 2010, 20:45:01 UTC
1 parent fe6f07c
Raw File
Tip revision: e7901c5ebbf81bd07203433f20224077d8020a5e authored by Florent Xicluna on 01 March 2010, 20:45:01 UTC
#7808: Fix reference leaks in _bsddb and related tests.
Tip revision: e7901c5
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