Staging
v0.5.1
https://github.com/python/cpython
Revision b3d5531683f3c621cd521cf7bde3e96cbb8350a6 authored by Brian Curtin on 22 November 2010, 00:02:28 UTC, committed by Brian Curtin on 22 November 2010, 00:02:28 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86655 | brian.curtin | 2010-11-21 18:01:01 -0600 (Sun, 21 Nov 2010) | 2 lines

  Quote the paths in the event that they contain spaces.
........
1 parent 44c1db0
Raw File
Tip revision: b3d5531683f3c621cd521cf7bde3e96cbb8350a6 authored by Brian Curtin on 22 November 2010, 00:02:28 UTC
Merged revisions 86655 via svnmerge from
Tip revision: b3d5531
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