Staging
v0.5.1
https://github.com/python/cpython
Revision 38889804086855d507ca5cfee187e8c91fc99379 authored by Georg Brandl on 21 March 2008, 19:42:31 UTC, committed by Georg Brandl on 21 March 2008, 19:42:31 UTC
1 parent 02781dc
Raw File
Tip revision: 38889804086855d507ca5cfee187e8c91fc99379 authored by Georg Brandl on 21 March 2008, 19:42:31 UTC
file.write() may return something with the new IO framework.
Tip revision: 3888980
metagrammar.h
#ifndef Py_METAGRAMMAR_H
#define Py_METAGRAMMAR_H
#ifdef __cplusplus
extern "C" {
#endif


#define MSTART 256
#define RULE 257
#define RHS 258
#define ALT 259
#define ITEM 260
#define ATOM 261

#ifdef __cplusplus
}
#endif
#endif /* !Py_METAGRAMMAR_H */
back to top