Staging
v0.5.1
https://github.com/python/cpython
Revision c82c559c024f009e905af7e7736cb27f4f6e2db2 authored by Andrew MacIntyre on 02 December 2003, 12:38:11 UTC, committed by Andrew MacIntyre on 02 December 2003, 12:38:11 UTC
  curses_panel works;
- tweak compiler switches.
1 parent 5b234b1
Raw File
Tip revision: c82c559c024f009e905af7e7736cb27f4f6e2db2 authored by Andrew MacIntyre on 02 December 2003, 12:38:11 UTC
- add build support for curses to be both extension and DLL, so that
Tip revision: c82c559
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