Staging
v0.5.1
https://github.com/python/cpython
Revision cc8dd4ec728761a609aeab70d8e6db8e7910edef authored by Thomas Wouters on 19 July 2001, 11:14:41 UTC, committed by Thomas Wouters on 19 July 2001, 11:14:41 UTC
1 parent d1d2a9a
Raw File
Tip revision: cc8dd4ec728761a609aeab70d8e6db8e7910edef authored by Thomas Wouters on 19 July 2001, 11:14:41 UTC
Merge from the trunk... just contains bugfixes, according to Jack and Just.
Tip revision: cc8dd4e
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