Staging
v0.5.1
https://github.com/python/cpython
Revision e7ebf1453beb1a40e65630897fa1e35a3c2d3ec1 authored by Stéphane Wirtel on 10 October 2018, 13:39:34 UTC, committed by Julien Palard on 10 October 2018, 13:39:34 UTC
(cherry picked from commit 683281f536981da395575b5a07d6761118259fd2)
1 parent 482dc94
Raw File
Tip revision: e7ebf1453beb1a40e65630897fa1e35a3c2d3ec1 authored by Stéphane Wirtel on 10 October 2018, 13:39:34 UTC
[3.6] bpo-34906: Doc: Fix typos (2) (GH-9735)
Tip revision: e7ebf14
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