Staging
v0.5.1
https://github.com/python/cpython
Revision c6c1c6ef79b359ca4f6b30c0c91514e9ea486b9c authored by Guido van Rossum on 29 October 2016, 19:44:30 UTC, committed by Guido van Rossum on 29 October 2016, 19:44:30 UTC
2 parent s 4782ab3 + b7dedc8
Raw File
Tip revision: c6c1c6ef79b359ca4f6b30c0c91514e9ea486b9c authored by Guido van Rossum on 29 October 2016, 19:44:30 UTC
Issue #28556: updates to typing.py (fix copy, deepcopy, pickle) (3.5->3.6)
Tip revision: c6c1c6e
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