Staging
v0.5.1
https://github.com/python/cpython
Revision d7aa5248fb577c7f46d4c0c9b064392bf5c17403 authored by Victor Stinner on 27 March 2015, 14:36:01 UTC, committed by Victor Stinner on 27 March 2015, 14:36:01 UTC
-Og does not optimize the C code, it's just "fast debugging".
1 parent 79fd962
Raw File
Tip revision: d7aa5248fb577c7f46d4c0c9b064392bf5c17403 authored by Victor Stinner on 27 March 2015, 14:36:01 UTC
Issue #23445: Fix test.support.python_is_optimized() for CFLAGS=-Og
Tip revision: d7aa524
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