Staging
v0.5.1
https://github.com/python/cpython
Revision 943ddac14227bf9cdd224903bc5f5696997a0129 authored by Robert Collins on 22 July 2015, 20:08:59 UTC, committed by Robert Collins on 22 July 2015, 20:08:59 UTC
2 parent s 6cd5635 + 80e4f30
Raw File
Tip revision: 943ddac14227bf9cdd224903bc5f5696997a0129 authored by Robert Collins on 22 July 2015, 20:08:59 UTC
Remove line numbers from unittest in susp-ignored.
Tip revision: 943ddac
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