Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: b87d6000f38e6158bbe1d9df5c6136f27aeace12 authored by Ned Deily on 15 August 2016, 20:21:29 UTC
Version bump for 3.6.0a4
Tip revision: b87d600
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