Staging
v0.5.1
https://github.com/python/cpython
Revision 0a1ba709493656cb6f450c0ec3d07566185104b4 authored by Terry Jan Reedy on 28 October 2015, 07:14:46 UTC, committed by Terry Jan Reedy on 28 October 2015, 07:14:46 UTC
1 parent 8048776
Raw File
Tip revision: 0a1ba709493656cb6f450c0ec3d07566185104b4 authored by Terry Jan Reedy on 28 October 2015, 07:14:46 UTC
Issue #25432: Explain isinstance behaviour when type is a tuple.
Tip revision: 0a1ba70
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