Staging
v0.8.1
https://github.com/python/cpython
Revision d20046622a3e5c687d03913e0632ca1ed690e1b6 authored by Georg Brandl on 16 March 2007, 08:33:51 UTC, committed by Georg Brandl on 16 March 2007, 08:33:51 UTC
1 parent 7d9ac78
Raw File
Tip revision: d20046622a3e5c687d03913e0632ca1ed690e1b6 authored by Georg Brandl on 16 March 2007, 08:33:51 UTC
RFE #1670167: fix in isinstance() docs.
Tip revision: d200466
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