Staging
v0.5.1
https://github.com/python/cpython
Revision 9684cf69e32ae442c7be54521073ac78557f3bbf authored by Miss Islington (bot) on 07 November 2017, 00:44:23 UTC, committed by Victor Stinner on 07 November 2017, 00:44:23 UTC
1 parent a6ffec2
Raw File
Tip revision: 9684cf69e32ae442c7be54521073ac78557f3bbf authored by Miss Islington (bot) on 07 November 2017, 00:44:23 UTC
bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__() more than once (GH-3968) (#4301)
Tip revision: 9684cf6
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