Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: d78cec5f39646f62384558fb85725427559426dc authored by Benjamin Peterson on 05 December 2009, 17:47:56 UTC
bump version to 2.7a1
Tip revision: d78cec5
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