Staging
v0.5.1
https://github.com/python/cpython
Revision 0603d3049e79d59d1fb16d5a8e0bffcfc85c442c authored by Raymond Hettinger on 06 January 2015, 05:52:10 UTC, committed by Raymond Hettinger on 06 January 2015, 05:52:10 UTC
1 parent 212994e
Raw File
Tip revision: 0603d3049e79d59d1fb16d5a8e0bffcfc85c442c authored by Raymond Hettinger on 06 January 2015, 05:52:10 UTC
Issue #23132: Mitigate regression in speed and clarity in functools.total_ordering.
Tip revision: 0603d30
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