https://github.com/python/cpython
Raw File
Tip revision: 8d999cbf4adea053be6dbb612b9844635c4dfb8e authored by Ned Deily on 28 December 2021, 07:08:54 UTC
Update REAME and Docs sidebar for EOL
Tip revision: 8d999cb
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