diff options
Diffstat (limited to 'common/python/2.5/ast.h')
| -rw-r--r-- | common/python/2.5/ast.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/common/python/2.5/ast.h b/common/python/2.5/ast.h new file mode 100644 index 0000000..cc14b7f --- /dev/null +++ b/common/python/2.5/ast.h @@ -0,0 +1,13 @@ +#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 */ |