Staging
v0.5.1
https://github.com/python/cpython
Revision 34bb88dc5bc447832db8c7ccdc173311e0685eab authored by Xiang Zhang on 09 March 2018, 02:21:58 UTC, committed by GitHub on 09 March 2018, 02:21:58 UTC
1 parent 55d5bfb
Raw File
Tip revision: 34bb88dc5bc447832db8c7ccdc173311e0685eab authored by Xiang Zhang on 09 March 2018, 02:21:58 UTC
Clear possible exception before calling PyTuple_Pack in IMPORT_NAME (GH-6033)
Tip revision: 34bb88d
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