Staging
v0.8.1
https://github.com/python/cpython
Revision 6b1167c61cb3e1e05b4b310fa9c9cddff93afa27 authored by Antoine Pitrou on 05 November 2010, 19:55:02 UTC, committed by Antoine Pitrou on 05 November 2010, 19:55:02 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86214 | antoine.pitrou | 2010-11-05 20:47:27 +0100 (ven., 05 nov. 2010) | 4 lines

  Issue #10311: The signal module now restores errno before returning from
  its low-level signal handler.  Patch by Hallvard B Furuseth.
........
1 parent 51c9b51
Raw File
Tip revision: 6b1167c61cb3e1e05b4b310fa9c9cddff93afa27 authored by Antoine Pitrou on 05 November 2010, 19:55:02 UTC
Merged revisions 86214 via svnmerge from
Tip revision: 6b1167c
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