Staging
v0.8.1
https://github.com/python/cpython
Revision 496790b5413a28eb240033f4900099fff40b01e6 authored by Benjamin Peterson on 27 May 2016, 05:55:49 UTC, committed by Benjamin Peterson on 27 May 2016, 05:55:49 UTC
1 parent 01d2580
Raw File
Tip revision: 496790b5413a28eb240033f4900099fff40b01e6 authored by Benjamin Peterson on 27 May 2016, 05:55:49 UTC
remove cruft from Schwarzian transform section
Tip revision: 496790b
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