Staging
v0.5.1
Revision 947ce58a9018d23cb1e5e8de550f2ba0e542248e authored by Benjamin Peterson on 24 June 2010, 00:12:40 UTC, committed by Benjamin Peterson on 24 June 2010, 00:12:40 UTC
1 parent 5c995c1
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