Staging
v0.5.1
Revision 84e7e5f40e2972af725e7f57e53bb6bcf3931912 authored by Serhiy Storchaka on 17 December 2013, 12:53:32 UTC, committed by Serhiy Storchaka on 17 December 2013, 12:53:32 UTC
1 parent 6d56231
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