Staging
v0.5.1
https://github.com/python/cpython
Revision 5770dda249f12a267dd5e030dd990b0a01d39f1f authored by Christian Heimes on 26 March 2008, 12:50:32 UTC, committed by Christian Heimes on 26 March 2008, 12:50:32 UTC
svn+ssh://pythondev@svn.python.org/python/branches/libffi3-branch
1 parent 1a6387e
Raw File
Tip revision: 5770dda249f12a267dd5e030dd990b0a01d39f1f authored by Christian Heimes on 26 March 2008, 12:50:32 UTC
Removed merge tracking for "svnmerge" for
Tip revision: 5770dda
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