Staging
v0.5.1
https://github.com/python/cpython
Revision ca079a3ea30098aff3197c559a0e32d42dda6d84 authored by Benjamin Peterson on 29 April 2018, 22:47:33 UTC, committed by Benjamin Peterson on 29 April 2018, 22:47:33 UTC
1 parent 4c86fc0
Raw File
Tip revision: ca079a3ea30098aff3197c559a0e32d42dda6d84 authored by Benjamin Peterson on 29 April 2018, 22:47:33 UTC
bump to 2.7.15
Tip revision: ca079a3
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