Staging
v0.5.1
https://github.com/python/cpython
Revision e518551a916b074d735679221c0bde95972e1821 authored by Vinay Sajip on 11 January 2007, 20:08:56 UTC, committed by Vinay Sajip on 11 January 2007, 20:08:56 UTC
1 parent 1223a40
Raw File
Tip revision: e518551a916b074d735679221c0bde95972e1821 authored by Vinay Sajip on 11 January 2007, 20:08:56 UTC
Backported change in shutdown(); now takes an optional handler-list argument.
Tip revision: e518551
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