Staging
v0.5.1
https://github.com/python/cpython
Revision ab1455829bf9fa5b1c23cac865c27131fed3e6e0 authored by Martin Panter on 07 June 2016, 00:27:17 UTC, committed by Martin Panter on 07 June 2016, 00:27:17 UTC
1 parent 835d392
Raw File
Tip revision: ab1455829bf9fa5b1c23cac865c27131fed3e6e0 authored by Martin Panter on 07 June 2016, 00:27:17 UTC
Issue #27229: Fix in-tree cross-build rule, by Xavier de Gaye
Tip revision: ab14558
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