Staging
v0.5.1
https://github.com/python/cpython
Revision e72393978f254ccf5e51ae8de6b99dc3568f124d authored by Raymond Hettinger on 21 August 2005, 11:59:04 UTC, committed by Raymond Hettinger on 21 August 2005, 11:59:04 UTC
1 parent d4a439c
Raw File
Tip revision: e72393978f254ccf5e51ae8de6b99dc3568f124d authored by Raymond Hettinger on 21 August 2005, 11:59:04 UTC
SF bug #1121416: zip incorrectly and incompletely documented
Tip revision: e723939
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