Staging
v0.5.1
https://github.com/python/cpython
Revision 15d8927f7e622c02ef91cb17dcddad00212e1ba1 authored by Steve Purcell on 12 April 2001, 09:05:01 UTC, committed by Steve Purcell on 12 April 2001, 09:05:01 UTC
- TestCase.failureException defines the exception that indicates a test failure
- Docstrings for TestLoader class
- Added exc_info() hack back in
1 parent 5c9aad6
Raw File
Tip revision: 15d8927f7e622c02ef91cb17dcddad00212e1ba1 authored by Steve Purcell on 12 April 2001, 09:05:01 UTC
- New fail*() methods, and comprehensive set of assert*() synonyms
Tip revision: 15d8927
pgen.h
#ifndef Py_PGEN_H
#define Py_PGEN_H
#ifdef __cplusplus
extern "C" {
#endif


/* Parser generator interface */

extern grammar *meta_grammar(void);

struct _node;
extern grammar *pgen(struct _node *);

#ifdef __cplusplus
}
#endif
#endif /* !Py_PGEN_H */
back to top