Staging
v0.5.1
https://github.com/python/cpython
Revision 159f97b2d7aba6f2d5cdc7f6155298ca33626762 authored by Serhiy Storchaka on 27 October 2016, 18:42:15 UTC, committed by Serhiy Storchaka on 27 October 2016, 18:42:15 UTC
2 parent s 0093907 + 1ecf7d2
Raw File
Tip revision: 159f97b2d7aba6f2d5cdc7f6155298ca33626762 authored by Serhiy Storchaka on 27 October 2016, 18:42:15 UTC
Issue #28496: Mark up constants 0, 1 and -1 that denote return values or
Tip revision: 159f97b
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