Staging
v0.5.1
https://github.com/python/cpython
Revision f410ce8c0989ef14f0f935e256d82e96f5e0602b authored by Brett Cannon on 10 August 2012, 21:41:23 UTC, committed by Brett Cannon on 10 August 2012, 21:41:23 UTC
1 parent e9175bd
Raw File
Tip revision: f410ce8c0989ef14f0f935e256d82e96f5e0602b authored by Brett Cannon on 10 August 2012, 21:41:23 UTC
Issue #15502: Refactor some code.
Tip revision: f410ce8
ast.h
#ifndef Py_AST_H
#define Py_AST_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(int) PyAST_Validate(mod_ty);
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