Staging
v0.5.1
https://github.com/python/cpython
Revision a09dc9e38a43f7129b5702200389044dc51541f9 authored by Raymond Hettinger on 01 September 2010, 20:31:59 UTC, committed by Raymond Hettinger on 01 September 2010, 20:31:59 UTC
1 parent 1ce3eb5
Raw File
Tip revision: a09dc9e38a43f7129b5702200389044dc51541f9 authored by Raymond Hettinger on 01 September 2010, 20:31:59 UTC
'Using Python' now called 'Python Setup'
Tip revision: a09dc9e
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