Staging
v0.8.1
https://github.com/python/cpython
Revision 4a3d96cafbceb878e261681c1000811a8478da56 authored by Ned Deily on 10 August 2015, 03:21:29 UTC, committed by Ned Deily on 10 August 2015, 03:21:29 UTC
1 parent 131426e
Raw File
Tip revision: 4a3d96cafbceb878e261681c1000811a8478da56 authored by Ned Deily on 10 August 2015, 03:21:29 UTC
Issue #24745: Prevent IDLE initialization crash with Tk 8.4:
Tip revision: 4a3d96c
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