Staging
v0.5.1
https://github.com/python/cpython
Revision b104606d4c63980c7698e9f846b1ce341eac3979 authored by Anthony Baxter on 21 November 2001, 05:37:32 UTC, committed by Anthony Baxter on 21 November 2001, 05:37:32 UTC
. Always pass a full path name to LoadLibraryEx().  Fixes some Windows 9x
  problems.  As discussed on python-dev
1 parent a700e18
Raw File
Tip revision: b104606d4c63980c7698e9f846b1ce341eac3979 authored by Anthony Baxter on 21 November 2001, 05:37:32 UTC
backport of 2.8, after checking with MarkH
Tip revision: b104606
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