Staging
v0.8.1
Revision 65605f7a5f029636522c80015f9295b2ea2e8d68 authored by Mark Dickinson on 07 April 2010, 10:18:27 UTC, committed by Mark Dickinson on 07 April 2010, 10:18:27 UTC
in the hope of getting more information about the test_ctypes failures
on Sparc (see issue #8314).
1 parent 497256b
Raw File
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