Staging
v0.5.1
https://github.com/python/cpython
Revision 0c3ea0942d75cfd2b484a3ae5d0a41f9fb1c8984 authored by Martin v. Löwis on 02 March 2014, 19:29:18 UTC, committed by Martin v. Löwis on 02 March 2014, 19:29:18 UTC
1 parent a663069
Raw File
Tip revision: 0c3ea0942d75cfd2b484a3ae5d0a41f9fb1c8984 authored by Martin v. Löwis on 02 March 2014, 19:29:18 UTC
Issue #14512: Launch pydoc -b instead of pydocgui.pyw on Windows.
Tip revision: 0c3ea09
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