Staging
v0.5.1
https://github.com/python/cpython
Revision d49c47bfb0ea3bc2e7d8778d8002c0f628d97488 authored by Guido van Rossum on 20 October 2013, 04:26:34 UTC, committed by Guido van Rossum on 20 October 2013, 04:26:34 UTC
1 parent 0acceb7
Raw File
Tip revision: d49c47bfb0ea3bc2e7d8778d8002c0f628d97488 authored by Guido van Rossum on 20 October 2013, 04:26:34 UTC
Break out of loop on EOF in asyncio echo test programs.
Tip revision: d49c47b
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