Staging
v0.8.1
https://github.com/python/cpython
Revision 38546ee51cadc924bb4a8f703d1891adef3c6829 authored by Benjamin Peterson on 04 April 2013, 02:35:12 UTC, committed by Benjamin Peterson on 04 April 2013, 02:35:12 UTC
1 parent f4e68b1
Raw File
Tip revision: 38546ee51cadc924bb4a8f703d1891adef3c6829 authored by Benjamin Peterson on 04 April 2013, 02:35:12 UTC
close search and replace dialog after it is used (closes #17625)
Tip revision: 38546ee
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