Staging
v0.5.1
https://github.com/python/cpython
Revision b01f94324a95657b613f7d1ef7dca1a4e31af123 authored by Georg Brandl on 13 March 2010, 10:59:09 UTC, committed by Georg Brandl on 13 March 2010, 10:59:09 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78910 | georg.brandl | 2010-03-13 11:54:12 +0100 (Sa, 13 Mär 2010) | 1 line

  Bump externals versions for doc build.
........
1 parent de1838c
Raw File
Tip revision: b01f94324a95657b613f7d1ef7dca1a4e31af123 authored by Georg Brandl on 13 March 2010, 10:59:09 UTC
Merged revisions 78910 via svnmerge from
Tip revision: b01f943
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