Staging
v0.5.1
https://github.com/python/cpython
Revision a93a663d6c2fdfbddbda9729c96e2737c0012522 authored by Zsolt Dollenstein on 27 April 2018, 22:33:37 UTC, committed by Yury Selivanov on 27 April 2018, 22:33:37 UTC
1 parent dd3ede7
Raw File
Tip revision: a93a663d6c2fdfbddbda9729c96e2737c0012522 authored by Zsolt Dollenstein on 27 April 2018, 22:33:37 UTC
[3.7] bpo-33363: raise SyntaxError for async for/with outside async functions (GH-6616). (GH-6619)
Tip revision: a93a663
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