Staging
v0.8.1
https://github.com/python/cpython
Revision c1635e497d060bae076127152801af2b2ec552ff authored by Larry Hastings on 07 September 2015, 05:10:22 UTC, committed by Larry Hastings on 07 September 2015, 05:10:22 UTC
Issue #25005: Backout fix for #8232 because of use of unsafe subprocess.call(shell=True)
2 parent s e5b5895 + 2ebd8f5
Raw File
Tip revision: c1635e497d060bae076127152801af2b2ec552ff authored by Larry Hastings on 07 September 2015, 05:10:22 UTC
Merged in stevedower/cpython350 (pull request #20)
Tip revision: c1635e4
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