Staging
v0.5.1
https://github.com/python/cpython
Revision 2593eac34e45d9f6160419ec50dbbe4452bca1fb authored by Barry Warsaw on 23 February 2012, 15:59:50 UTC, committed by Barry Warsaw on 23 February 2012, 15:59:50 UTC
1 parent 74f4bd5
Raw File
Tip revision: 2593eac34e45d9f6160419ec50dbbe4452bca1fb authored by Barry Warsaw on 23 February 2012, 15:59:50 UTC
Added tag v2.6.8rc1 for changeset caab08cd2b3e
Tip revision: 2593eac
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