Staging
v0.5.1
https://github.com/python/cpython
Revision 4ea9dbda4ad823875ed79a25062a7f5415d91b22 authored by Miss Islington (bot) on 07 June 2019, 09:47:16 UTC, committed by Stefan Krah on 07 June 2019, 09:47:16 UTC
1 parent f09d915
Raw File
Tip revision: 4ea9dbda4ad823875ed79a25062a7f5415d91b22 authored by Miss Islington (bot) on 07 June 2019, 09:47:16 UTC
Use assertEqual(). (#13886)
Tip revision: 4ea9dbd
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