Staging
v0.5.1
https://github.com/python/cpython
Revision 9d26f81b900ec7a57bd300cdc65f441a41cf4bf2 authored by Fred Drake on 03 June 2001, 03:16:04 UTC, committed by Fred Drake on 03 June 2001, 03:16:04 UTC
In particular, the affect on existing list content was not sufficiently
explained.

This closes SF bug #429554.
1 parent 3da898b
Raw File
Tip revision: 9d26f81b900ec7a57bd300cdc65f441a41cf4bf2 authored by Fred Drake on 03 June 2001, 03:16:04 UTC
Explained more differences between PyList_SetItem() and PyList_SET_ITEM().
Tip revision: 9d26f81
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