Staging
v0.5.1
https://github.com/python/cpython
Revision bc62aae923fc430f8da21534bfe6b88d67b1c587 authored by Steven D'Aprano on 11 May 2016, 01:50:13 UTC, committed by Steven D'Aprano on 11 May 2016, 01:50:13 UTC
1 parent dba9039
Raw File
Tip revision: bc62aae923fc430f8da21534bfe6b88d67b1c587 authored by Steven D'Aprano on 11 May 2016, 01:50:13 UTC
Issue 26977, remove unneeded line in pvariance (duplicate call to _ss).
Tip revision: bc62aae
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