Staging
v0.5.1
https://github.com/python/cpython
Revision bee54f53b1162d2229e15e30156e7f5516cf82ae authored by Mark Dickinson on 07 November 2010, 12:50:11 UTC, committed by Mark Dickinson on 07 November 2010, 12:50:11 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86293 | mark.dickinson | 2010-11-07 12:48:18 +0000 (Sun, 07 Nov 2010) | 1 line

  Issue #10145: the float.is_integer method was undocumented.
........
1 parent 339293a
Raw File
Tip revision: bee54f53b1162d2229e15e30156e7f5516cf82ae authored by Mark Dickinson on 07 November 2010, 12:50:11 UTC
Merged revisions 86293 via svnmerge from
Tip revision: bee54f5
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