Staging
v0.5.1
https://github.com/python/cpython
Revision e20056c8f71a8e289016c0cbd5adb5826cd91f64 authored by Benjamin Peterson on 29 May 2015, 22:10:30 UTC, committed by Benjamin Peterson on 29 May 2015, 22:10:30 UTC
1 parent a663121
Raw File
Tip revision: e20056c8f71a8e289016c0cbd5adb5826cd91f64 authored by Benjamin Peterson on 29 May 2015, 22:10:30 UTC
fix importing one char extension modules (closes #24328)
Tip revision: e20056c
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