Staging
v0.5.1
https://github.com/python/cpython
Revision daf17e9bc8aa4aae570d9746a724ba5f3fdc7cb9 authored by Victor Stinner on 25 May 2011, 20:52:37 UTC, committed by Victor Stinner on 25 May 2011, 20:52:37 UTC
1 parent 5100a40
Raw File
Tip revision: daf17e9bc8aa4aae570d9746a724ba5f3fdc7cb9 authored by Victor Stinner on 25 May 2011, 20:52:37 UTC
Issue #12175: RawIOBase.readall() now returns None if read() returns None.
Tip revision: daf17e9
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