Staging
v0.8.1
https://github.com/python/cpython
Revision e37d75fce22f6c216148102652db64744ac06a6e authored by Michael Foord on 05 June 2010, 12:10:52 UTC, committed by Michael Foord on 05 June 2010, 12:10:52 UTC
1 parent 23f0d6b
Raw File
Tip revision: e37d75fce22f6c216148102652db64744ac06a6e authored by Michael Foord on 05 June 2010, 12:10:52 UTC
Removed the new max_diff argument to assertSequenceEqual. All unittest.TestCase assert methods that use difflib to produce failure messages now truncate overly long messages. New class attribute unittest.TestCase.maxDiff to configure this if necessary. Issue 8351.
Tip revision: e37d75f
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