Staging
v0.5.1
https://github.com/python/cpython
Revision 66b343b65fa255b35536f781d0eb8db66325572b authored by Alexandre Vassalotti on 11 June 2008, 23:28:22 UTC, committed by Alexandre Vassalotti on 11 June 2008, 23:28:22 UTC
1 parent 794652d
Raw File
Tip revision: 66b343b65fa255b35536f781d0eb8db66325572b authored by Alexandre Vassalotti on 11 June 2008, 23:28:22 UTC
Removed exception renaming cruft in pickle.py.
Tip revision: 66b343b
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