Staging
v0.8.1
https://github.com/python/cpython
Revision c459755df217824dbfe261debd8e6adff977a10d authored by Benjamin Peterson on 23 June 2014, 03:26:07 UTC, committed by Benjamin Peterson on 23 June 2014, 03:26:07 UTC
1 parent 008651c
Raw File
Tip revision: c459755df217824dbfe261debd8e6adff977a10d authored by Benjamin Peterson on 23 June 2014, 03:26:07 UTC
adjust zipfile tests for splitdrive improvements
Tip revision: c459755
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