Staging
v0.5.1
https://github.com/python/cpython
Revision 740593416a9226e217561e36d799d8698e2483f2 authored by Benjamin Peterson on 21 February 2012, 04:11:19 UTC, committed by Benjamin Peterson on 21 February 2012, 04:11:19 UTC
1 parent f093724
Raw File
Tip revision: 740593416a9226e217561e36d799d8698e2483f2 authored by Benjamin Peterson on 21 February 2012, 04:11:19 UTC
use set
Tip revision: 7405934
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