Staging
v0.5.1
https://github.com/python/cpython
Revision 8752f7116a5841157dc6f978ac5cb469f79146df authored by Barry Warsaw on 26 July 2006, 03:55:09 UTC, committed by Barry Warsaw on 26 July 2006, 03:55:09 UTC
1 parent 2bfcf5d
Raw File
Tip revision: 8752f7116a5841157dc6f978ac5cb469f79146df authored by Barry Warsaw on 26 July 2006, 03:55:09 UTC
Fix the tests to work with Python 2.1, which email 2.5 must do.
Tip revision: 8752f71
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