Staging
v0.5.1
https://github.com/python/cpython
Revision 5d1554a2eb00938f3d5a3e18b6244dd023fc9339 authored by Kit Sunde on 10 July 2017, 20:05:25 UTC, committed by Mariatta on 10 July 2017, 20:05:25 UTC
1 parent f6d6480
Raw File
Tip revision: 5d1554a2eb00938f3d5a3e18b6244dd023fc9339 authored by Kit Sunde on 10 July 2017, 20:05:25 UTC
json Docs: Trivial update to the code example (GH-2465)
Tip revision: 5d1554a
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