https://github.com/python/cpython
Raw File
Tip revision: ecd9946c9d1df7cd1aa15d08d72bbcc0899d272d authored by Ned Deily on 05 June 2023, 20:40:12 UTC
Python 3.7.17
Tip revision: ecd9946
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