Staging
v0.5.1
https://github.com/python/cpython
Revision 838645dc4191c4109e2b300cf9ed9d481b55509f authored by Zackery Spytz on 19 December 2018, 06:01:38 UTC, committed by Serhiy Storchaka on 19 December 2018, 06:01:38 UTC
1 parent 53e2248
Raw File
Tip revision: 838645dc4191c4109e2b300cf9ed9d481b55509f authored by Zackery Spytz on 19 December 2018, 06:01:38 UTC
bpo-10320: Use PY_FORMAT_LONG_LONG in ctypes' PyCArg_repr(). (GH-11230)
Tip revision: 838645d
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