Staging
v0.5.1
https://github.com/python/cpython
Revision 53c58f8bcc6513321a5614e31eeb468eda4f4a40 authored by Raymond Hettinger on 01 September 2010, 09:15:42 UTC, committed by Raymond Hettinger on 01 September 2010, 09:15:42 UTC
1 parent 9707fd2
Raw File
Tip revision: 53c58f8bcc6513321a5614e31eeb468eda4f4a40 authored by Raymond Hettinger on 01 September 2010, 09:15:42 UTC
Forward port sorting howto
Tip revision: 53c58f8
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