Staging
v0.5.1
https://github.com/python/cpython
Revision fde86ff67381c40b81286dabc7641cbb44edc730 authored by Giampaolo Rodola' on 07 May 2011, 17:35:36 UTC, committed by Giampaolo Rodola' on 07 May 2011, 17:35:36 UTC
2 parent s 63e4230 + 0b5c21f
Raw File
Tip revision: fde86ff67381c40b81286dabc7641cbb44edc730 authored by Giampaolo Rodola' on 07 May 2011, 17:35:36 UTC
merge
Tip revision: fde86ff
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