https://github.com/python/cpython
Raw File
Tip revision: d74ae9d17cb2f1ff3f254092fb36683173a79492 authored by Alexey Izbyshev on 06 November 2018, 04:29:07 UTC
closes bpo-35171: Fix test_TimeRE_recreation_timezone failure on some systems. (GH-10347)
Tip revision: d74ae9d
ast.h
#ifndef Py_AST_H
#define Py_AST_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
				  const char *, PyArena *);

#ifdef __cplusplus
}
#endif
#endif /* !Py_AST_H */
back to top