Staging
v0.8.1
https://github.com/python/cpython
Revision 919491d9bbad97e7b161d9c8ae11f1000bb170b8 authored by Andrew M. Kuchling on 19 October 2004, 19:34:07 UTC, committed by Andrew M. Kuchling on 19 October 2004, 19:34:07 UTC
1 parent e2f12bb
Raw File
Tip revision: 919491d9bbad97e7b161d9c8ae11f1000bb170b8 authored by Andrew M. Kuchling on 19 October 2004, 19:34:07 UTC
[Bug #1048816] Fix bug when you do Ctrl-K at the start of a line; fix from Stefan Heimann
Tip revision: 919491d
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