Staging
v0.5.1
https://github.com/python/cpython
Revision ac4202ee4d53d6c0a07109e03795b70d91edbbb3 authored by Victor Stinner on 17 June 2019, 13:23:52 UTC, committed by GitHub on 17 June 2019, 13:23:52 UTC
Mention explicitly that PyObject_CallXXX() functions raise an
exception an failure.

(cherry picked from commit 1ce2656f13e726b3b99d4c968926908cff1f460a)
1 parent 0040903
Raw File
Tip revision: ac4202ee4d53d6c0a07109e03795b70d91edbbb3 authored by Victor Stinner on 17 June 2019, 13:23:52 UTC
bpo-37194: Complete PyObject_CallXXX() docs (GH-14156) (GH-14158)
Tip revision: ac4202e
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