Staging
v0.5.1
https://github.com/python/cpython
Revision 7a66fc22ad62563d0907c2fc91229656acfa0dd6 authored by Benjamin Peterson on 02 February 2015, 15:51:20 UTC, committed by Benjamin Peterson on 02 February 2015, 15:51:20 UTC
1 parent c468b53
Raw File
Tip revision: 7a66fc22ad62563d0907c2fc91229656acfa0dd6 authored by Benjamin Peterson on 02 February 2015, 15:51:20 UTC
revert lineno and col_offset changes from #16795 (closes #21295)
Tip revision: 7a66fc2
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