Staging
v0.8.1
Revision 1f70b878c4b890c66bdb90d8c9ddb59dee0b48df authored by Ned Deily on 25 June 2014, 20:33:57 UTC, committed by Ned Deily on 25 June 2014, 20:33:57 UTC
1 parent 33ad096
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