Staging
v0.5.1
https://github.com/python/cpython
Revision 2c634425863d034965857cb0092fa98c4b3832e6 authored by Guido van Rossum on 23 January 2008, 01:20:26 UTC, committed by Guido van Rossum on 23 January 2008, 01:20:26 UTC
1 parent 7bf216b
Raw File
Tip revision: 2c634425863d034965857cb0092fa98c4b3832e6 authored by Guido van Rossum on 23 January 2008, 01:20:26 UTC
Backport r60208, skip some tests for huge passwd/group files.
Tip revision: 2c63442
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