Staging
v0.5.1
https://github.com/python/cpython
Revision 6e0a8b8ab63cc60b39af4387b99f448b0cf137ad authored by Georg Brandl on 05 March 2011, 19:38:24 UTC, committed by Georg Brandl on 05 March 2011, 19:38:24 UTC
1 parent 4db2c25
Raw File
Tip revision: 6e0a8b8ab63cc60b39af4387b99f448b0cf137ad authored by Georg Brandl on 05 March 2011, 19:38:24 UTC
Add tags from the closed branches.
Tip revision: 6e0a8b8
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