Staging
v0.5.1
https://github.com/python/cpython
Revision 0ca0c64409056047b4e24617f79a8faff93c2875 authored by Tim Peters on 12 November 2004, 16:12:15 UTC, committed by Tim Peters on 12 November 2004, 16:12:15 UTC
Simple correction from the code's author (Dan Gass).
1 parent 195404f
Raw File
Tip revision: 0ca0c64409056047b4e24617f79a8faff93c2875 authored by Tim Peters on 12 November 2004, 16:12:15 UTC
SF bug 1054821: difflib HtmlDiff() extra space on inserted 1 character lines
Tip revision: 0ca0c64
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