Staging
v0.5.1
https://github.com/python/cpython
Revision 112e4afd582515fcdcc0cde5012a4866e5cfda12 authored by Benjamin Peterson on 02 January 2019, 17:14:30 UTC, committed by GitHub on 02 January 2019, 17:14:30 UTC
1 parent 5a89c71
Raw File
Tip revision: 112e4afd582515fcdcc0cde5012a4866e5cfda12 authored by Benjamin Peterson on 02 January 2019, 17:14:30 UTC
Remove README.rst inadvertandly "backported" from 3.x in 5a89c71580529549e71567abf557c812eb470b2b. (GH-11409)
Tip revision: 112e4af
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