Staging
v0.5.1
https://github.com/python/cpython
Revision 4f9946874ba591326d57d60bbeef9e4f51432ac7 authored by Antoine Pitrou on 24 June 2012, 14:04:38 UTC, committed by Antoine Pitrou on 24 June 2012, 14:04:38 UTC
1 parent 9df73da
Raw File
Tip revision: 4f9946874ba591326d57d60bbeef9e4f51432ac7 authored by Antoine Pitrou on 24 June 2012, 14:04:38 UTC
The buffer protocol doesn't exist (in the glossary anyway).
Tip revision: 4f99468
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