Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1 | #ifndef Py_AST_H |
2 | #define Py_AST_H | ||||
3 | #ifdef __cplusplus | ||||
4 | extern "C" { | ||||
5 | #endif | ||||
6 | |||||
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame^] | 7 | PyAPI_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 Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 12 | |
13 | #ifdef __cplusplus | ||||
14 | } | ||||
15 | #endif | ||||
16 | #endif /* !Py_AST_H */ |