Staging
v0.5.1
https://github.com/python/cpython
Revision 22336ddd3263c7f4cc680fdac6e12a357ce2cded authored by Mark Dickinson on 02 February 2009, 21:37:16 UTC, committed by Mark Dickinson on 02 February 2009, 21:37:16 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r69224 | mark.dickinson | 2009-02-02 21:29:40 +0000 (Mon, 02 Feb 2009) | 3 lines

  Issue #1717, continued: Doc fixes and other cleanup related
  to renaming of tp_compare.
........
1 parent ae0803c
Raw File
Tip revision: 22336ddd3263c7f4cc680fdac6e12a357ce2cded authored by Mark Dickinson on 02 February 2009, 21:37:16 UTC
Merged revisions 69224 via svnmerge from
Tip revision: 22336dd
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