Staging
v0.5.1
https://github.com/python/cpython
Revision eed1661b47d5a80803d4760fb4ffc4c0da50dd13 authored by Terry Jan Reedy on 21 January 2014, 08:07:51 UTC, committed by Terry Jan Reedy on 21 January 2014, 08:07:51 UTC
1 parent 681ede8
Raw File
Tip revision: eed1661b47d5a80803d4760fb4ffc4c0da50dd13 authored by Terry Jan Reedy on 21 January 2014, 08:07:51 UTC
Issue #16655: Explain why Idle's test_calltips has 'fragile' tests of builtins.
Tip revision: eed1661
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