Staging
v0.5.1
https://github.com/python/cpython
Revision d97daebfa69b4df95231bcae4123eacad6a48d14 authored by Phil Jones on 31 January 2019, 10:08:57 UTC, committed by Inada Naoki on 31 January 2019, 10:08:57 UTC
1 parent 0bb4bdf
Raw File
Tip revision: d97daebfa69b4df95231bcae4123eacad6a48d14 authored by Phil Jones on 31 January 2019, 10:08:57 UTC
doc: http: Fix enum name for status code 416 (GH-11689)
Tip revision: d97daeb
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