Staging
v0.5.1
https://github.com/python/cpython
Revision bb1c079657fa8f8f9d7ec537f83b1fed1d9b413c authored by Ned Deily on 29 July 2015, 06:22:23 UTC, committed by Ned Deily on 29 July 2015, 06:22:23 UTC
1 parent 1ee9283
Raw File
Tip revision: bb1c079657fa8f8f9d7ec537f83b1fed1d9b413c authored by Ned Deily on 29 July 2015, 06:22:23 UTC
Issue #19450: Update OS X installer builds to use SQLite 3.8.11.
Tip revision: bb1c079
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