Staging
v0.5.1
Revision cd2070590286b52b7aebfb4ed4fe409ac759f94d authored by Benjamin Peterson on 29 May 2011, 21:50:27 UTC, committed by Benjamin Peterson on 29 May 2011, 21:50:27 UTC
1 parent 8c0c9d2
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