Staging
v0.5.1
https://github.com/python/cpython
Revision 841f7ed05224bb54f0a3d943dd5168044ba49bc6 authored by Barry Warsaw on 16 August 2010, 22:58:03 UTC, committed by Barry Warsaw on 16 August 2010, 22:58:03 UTC
1 parent 69e266c
Raw File
Tip revision: 841f7ed05224bb54f0a3d943dd5168044ba49bc6 authored by Barry Warsaw on 16 August 2010, 22:58:03 UTC
Remove tag for NEWS file fix.
Tip revision: 841f7ed
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