Staging
v0.5.1
https://github.com/python/cpython
Revision b992a0e102c1dcc8d038983755f792c2f65a233f authored by Serhiy Storchaka on 16 January 2014, 15:15:49 UTC, committed by Serhiy Storchaka on 16 January 2014, 15:15:49 UTC
requires them.  Disable executable bits and shebang lines in test and
benchmark files in order to prevent using a random system python, and in
source files of modules which don't provide command line interface.  Fixed
shebang line to use python3 executable in the unittestgui script.
1 parent 1654040
Raw File
Tip revision: b992a0e102c1dcc8d038983755f792c2f65a233f authored by Serhiy Storchaka on 16 January 2014, 15:15:49 UTC
Issue #19936: Added executable bits or shebang lines to Python scripts which
Tip revision: b992a0e
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