Staging
v0.5.1
https://github.com/python/cpython
Revision b1e22e3def4b4c146c7daa850784061ff2b17d43 authored by Tarek Ziadé on 06 March 2010, 02:26:07 UTC, committed by Tarek Ziadé on 06 March 2010, 02:26:07 UTC
........
  r78706 | tarek.ziade | 2010-03-06 02:04:14 +0100 (Sat, 06 Mar 2010) | 1 line

  copied back the build_ext tests from 2.6
........
  r78710 | tarek.ziade | 2010-03-06 02:27:09 +0100 (Sat, 06 Mar 2010) | 1 line

  files used by win32 tests
........
1 parent 924b571
Raw File
Tip revision: b1e22e3def4b4c146c7daa850784061ff2b17d43 authored by Tarek Ziadé on 06 March 2010, 02:26:07 UTC
Blocked revisions 78706,78710 via svnmerge
Tip revision: b1e22e3
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