Staging
v0.5.1
https://github.com/python/cpython
Revision 1c17e7ff08bb93de07ce8554a59b7474442cf48c authored by Xavier de Gaye on 28 October 2016, 09:22:05 UTC, committed by Xavier de Gaye on 28 October 2016, 09:22:05 UTC
1 parent b6bd81d
Raw File
Tip revision: 1c17e7ff08bb93de07ce8554a59b7474442cf48c authored by Xavier de Gaye on 28 October 2016, 09:22:05 UTC
Issue #28046: Fix the removal of the sysconfigdata module
Tip revision: 1c17e7f
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);
PyAPI_FUNC(mod_ty) PyAST_FromNodeObject(
    const node *n,
    PyCompilerFlags *flags,
    PyObject *filename,
    PyArena *arena);

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