Staging
v0.5.1
https://github.com/python/cpython
Revision d86254bc2514ec4fb9e62126c02ef2f6458db67d authored by Johannes Gijsbers on 12 March 2005, 16:38:39 UTC, committed by Johannes Gijsbers on 12 March 2005, 16:38:39 UTC
functions, etc., had comments after the colon, and some other cases.
This patch take a simpler approach that doesn't rely on looking for a
':'. Test cases are not backported, as test_inspect.py has been
rewritten using unittest on the trunk.

Thanks Simon Percivall!
1 parent e3fa061
Raw File
Tip revision: d86254bc2514ec4fb9e62126c02ef2f6458db67d authored by Johannes Gijsbers on 12 March 2005, 16:38:39 UTC
Backport of patch #1159931/bug #1143895: inspect.getsource failed when
Tip revision: d86254b
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