Staging
v0.8.1
https://github.com/python/cpython
Revision bad9a580caaba5088bea569c9c6775dab12b8103 authored by Benjamin Peterson on 14 April 2018, 22:06:30 UTC, committed by Benjamin Peterson on 14 April 2018, 22:06:30 UTC
1 parent f2f1d4b
Raw File
Tip revision: bad9a580caaba5088bea569c9c6775dab12b8103 authored by Benjamin Peterson on 14 April 2018, 22:06:30 UTC
2.7.15rc1 version bump
Tip revision: bad9a58
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