Staging
v0.8.1
Revision 9a6b400a59229914e566dfb2e3fe75f3e69cd1ca authored by Vinay Sajip on 14 December 2010, 19:40:21 UTC, committed by Vinay Sajip on 14 December 2010, 19:40:21 UTC
1 parent 31d04f2
Raw File
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