blob: a015336f032ffc30fad2638f204a2a94d95875e0 [file] [log] [blame]
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001#ifndef Py_AST_H
2#define Py_AST_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
Victor Stinner00676d12010-12-27 01:49:31 +00007PyAPI_FUNC(mod_ty) PyAST_FromNode(
8 const node *n,
9 PyCompilerFlags *flags,
10 const char *filename, /* decoded from the filesystem encoding */
11 PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000012
13#ifdef __cplusplus
14}
15#endif
16#endif /* !Py_AST_H */