Staging
v0.5.1
https://github.com/python/cpython
Revision ce1bd6ac7ffaf396157a9ceb55b281a3b196323f authored by Mariatta on 23 June 2017, 02:18:05 UTC, committed by GitHub on 23 June 2017, 02:18:05 UTC
When a class and its subclass are present, the latter is skipped.
(cherry picked from commit 6580c19bbbe7bc9bc0884699afd69184f523b32e)
1 parent 491afb5
Raw File
Tip revision: ce1bd6ac7ffaf396157a9ceb55b281a3b196323f authored by Mariatta on 23 June 2017, 02:18:05 UTC
[3.5] bpo-30619: Clarify typing.Union documentation (GH-2326) (GH-2338)
Tip revision: ce1bd6a
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