Staging
v0.5.1
https://github.com/python/cpython
Revision 05f1b93f5876ac970485ae008dd9ab3e8404f934 authored by Raymond Hettinger on 01 February 2019, 06:13:43 UTC, committed by GitHub on 01 February 2019, 06:13:43 UTC
1 parent ffdf1c3
Raw File
Tip revision: 05f1b93f5876ac970485ae008dd9ab3e8404f934 authored by Raymond Hettinger on 01 February 2019, 06:13:43 UTC
Speed-up argument parsing for common cases in deque.__init__()(GH-11717)
Tip revision: 05f1b93
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