Staging
v0.5.1
https://github.com/python/cpython
Revision 3f3dc89a156c2ab0ea340851dd3d4fd510865163 authored by Terry Jan Reedy on 10 August 2016, 19:15:25 UTC, committed by Terry Jan Reedy on 10 August 2016, 19:15:25 UTC
because test_idle failed while running with test -w (and no -jn).
Prevent a non-fatal warning from test_config_key.
1 parent 40a46ad
Raw File
Tip revision: 3f3dc89a156c2ab0ea340851dd3d4fd510865163 authored by Terry Jan Reedy on 10 August 2016, 19:15:25 UTC
Issue #27714: text_textview now passes when re-run in the same process
Tip revision: 3f3dc89
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