Staging
v0.5.1
https://github.com/python/cpython
Revision 5c387f2e5d4f21f9e8104d4d5410fc1fd91fa7e9 authored by Thomas Heller on 02 August 2006, 12:00:13 UTC, committed by Thomas Heller on 02 August 2006, 12:00:13 UTC
1 parent 6a0ce40
Raw File
Tip revision: 5c387f2e5d4f21f9e8104d4d5410fc1fd91fa7e9 authored by Thomas Heller on 02 August 2006, 12:00:13 UTC
Fix a mistake.
Tip revision: 5c387f2
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