Staging
v0.5.1
https://github.com/python/cpython
Revision 62effc112793e7176acf9a9e7a852b104e2e1606 authored by Fred Drake on 13 April 2001, 15:55:25 UTC, committed by Fred Drake on 13 April 2001, 15:55:25 UTC
1 parent fb8ffe6
Raw File
Tip revision: 62effc112793e7176acf9a9e7a852b104e2e1606 authored by Fred Drake on 13 April 2001, 15:55:25 UTC
Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping.
Tip revision: 62effc1
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