Staging
v0.5.1
Revision 8cd0b38392994c5af7d9bd430c149bdd3a0f9a6d authored by Raymond Hettinger on 07 February 2011, 04:00:24 UTC, committed by Raymond Hettinger on 07 February 2011, 04:00:24 UTC
1 parent 833ad0e
Raw File
ast.h
#ifndef Py_AST_H
#define Py_AST_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(mod_ty) PyAST_FromNode(
    const node *n,
    PyCompilerFlags *flags,
    const char *filename,       /* decoded from the filesystem encoding */
    PyArena *arena);

#ifdef __cplusplus
}
#endif
#endif /* !Py_AST_H */
back to top