Staging
v0.5.1
https://github.com/python/cpython
Revision 5c7419d4332a9929d8ba0db13d5e2c0db3aee160 authored by Łukasz Langa on 29 April 2011, 14:16:36 UTC, committed by Łukasz Langa on 29 April 2011, 14:16:36 UTC
1 parent 4d27d9e
Raw File
Tip revision: 5c7419d4332a9929d8ba0db13d5e2c0db3aee160 authored by Łukasz Langa on 29 April 2011, 14:16:36 UTC
Removed debugging leftovers.
Tip revision: 5c7419d
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