Staging
v0.5.1
https://github.com/python/cpython
Revision fdfb0050bb4e79724da052e06bab1c875076832a authored by R David Murray on 29 July 2013, 19:49:58 UTC, committed by R David Murray on 29 July 2013, 19:49:58 UTC
With the exception of the 'as_string' call in the policy docs.
That one is a separate issue.

Note that when building the docs sphinx is complaining about
.. testcleanup:: being an invalid directive.  I don't know
why this is, as I'm following the sphinx docs...but fortunately
the action is to omit the text in the body, so the generated
documentation is correct.
1 parent c06c0ae
Raw File
Tip revision: fdfb0050bb4e79724da052e06bab1c875076832a authored by R David Murray on 29 July 2013, 19:49:58 UTC
#18584: make doctest examples in email documentation pass.
Tip revision: fdfb005
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