Staging
v0.5.1
https://github.com/python/cpython
Revision e84089e3f1000ba1d060931e416dc148fe79d6eb authored by Martin v. Löwis on 08 April 2010, 17:38:32 UTC, committed by Martin v. Löwis on 08 April 2010, 17:38:32 UTC
1 parent 1b287c7
Raw File
Tip revision: e84089e3f1000ba1d060931e416dc148fe79d6eb authored by Martin v. Löwis on 08 April 2010, 17:38:32 UTC
Issue #8204: Fix test_ttk notebook test by forcing focus.
Tip revision: e84089e
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