Staging
v0.8.1
Revision 5b68d649920dd84515950a5a02ffdac4ec15c4a8 authored by Georg Brandl on 12 October 2013, 16:44:13 UTC, committed by Georg Brandl on 12 October 2013, 16:44:13 UTC
1 parent c2a9dc3
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