Staging
v0.5.1
https://github.com/python/cpython
Revision 80af6da7489c3b28e0a46c73849da34273972e3b authored by Alexandre Vassalotti on 04 June 2008, 20:41:44 UTC, committed by Alexandre Vassalotti on 04 June 2008, 20:41:44 UTC
1 parent d5bb921
Raw File
Tip revision: 80af6da7489c3b28e0a46c73849da34273972e3b authored by Alexandre Vassalotti on 04 June 2008, 20:41:44 UTC
Fixed complex.__getnewargs__() to not emit another complex object.
Tip revision: 80af6da
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