Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 278519500f6c551cc2a8035f11a81d21fae7424c authored by Benjamin Peterson on 10 November 2013, 07:36:30 UTC
2.7.6 final
Tip revision: 2785195
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