Staging
v0.8.1
https://github.com/python/cpython
Revision 4c07377490c9001779ce737f4348a67bcd8dbf57 authored by Victor Stinner on 13 February 2014, 09:46:05 UTC, committed by Victor Stinner on 13 February 2014, 09:46:05 UTC
1 parent 1b0580b
Raw File
Tip revision: 4c07377490c9001779ce737f4348a67bcd8dbf57 authored by Victor Stinner on 13 February 2014, 09:46:05 UTC
Fix test_asyncio/test_events.py: skip IPv6 if IPv6 is disabled on the host
Tip revision: 4c07377
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