Staging
v0.5.1
https://github.com/python/cpython
Revision ebcd0ced14388d5859e4c57e9916a3f18e35e9c2 authored by Antoine Pitrou on 05 September 2008, 23:30:23 UTC, committed by Antoine Pitrou on 05 September 2008, 23:30:23 UTC
1 parent cdeb24b
Raw File
Tip revision: ebcd0ced14388d5859e4c57e9916a3f18e35e9c2 authored by Antoine Pitrou on 05 September 2008, 23:30:23 UTC
Issue #3535: zipfile couldn't read some zip files larger than 2GB.
Tip revision: ebcd0ce
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