Staging
v0.8.1
https://github.com/python/cpython
Revision e3005461c38f48f8c66d2033b44db159d23aebb7 authored by Georg Brandl on 06 October 2013, 11:09:59 UTC, committed by Georg Brandl on 06 October 2013, 11:09:59 UTC
1 parent 980db0a
Raw File
Tip revision: e3005461c38f48f8c66d2033b44db159d23aebb7 authored by Georg Brandl on 06 October 2013, 11:09:59 UTC
Fix missing class name in markup. Found by Tanky Woo on docs@.
Tip revision: e300546
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