Staging
v0.5.1
https://github.com/python/cpython
Revision d7aa5248fb577c7f46d4c0c9b064392bf5c17403 authored by Victor Stinner on 27 March 2015, 14:36:01 UTC, committed by Victor Stinner on 27 March 2015, 14:36:01 UTC
-Og does not optimize the C code, it's just "fast debugging".
1 parent 79fd962
Raw File
Tip revision: d7aa5248fb577c7f46d4c0c9b064392bf5c17403 authored by Victor Stinner on 27 March 2015, 14:36:01 UTC
Issue #23445: Fix test.support.python_is_optimized() for CFLAGS=-Og
Tip revision: d7aa524
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