Staging
v0.5.1
https://github.com/python/cpython
Revision 9c29f86a81d159eaa7be47f0de7c78f7a88d78fd authored by Senthil Kumaran on 29 April 2012, 02:20:46 UTC, committed by Senthil Kumaran on 29 April 2012, 02:20:46 UTC
1 parent 285e51b
Raw File
Tip revision: 9c29f86a81d159eaa7be47f0de7c78f7a88d78fd authored by Senthil Kumaran on 29 April 2012, 02:20:46 UTC
httplib test for early eof response. related to Issue13684
Tip revision: 9c29f86
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