Staging
v0.5.1
https://github.com/python/cpython
Revision 7c972f971ce46fb2a0c6e0b49265b8d4ef2a0773 authored by Benjamin Peterson on 19 August 2008, 17:59:23 UTC, committed by Benjamin Peterson on 19 August 2008, 17:59:23 UTC
1 parent 6626099
Raw File
Tip revision: 7c972f971ce46fb2a0c6e0b49265b8d4ef2a0773 authored by Benjamin Peterson on 19 August 2008, 17:59:23 UTC
get unparse to at least unparse its self
Tip revision: 7c972f9
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