1 /** 
2   Mirror _ast.h
3   */
4 module deimos.python.ast;
5 
6 import deimos.python.compile;
7 import deimos.python.pyarena;
8 import deimos.python.node;
9 import deimos.python.pythonrun;
10 
11 extern(C): version(Python_2_5_Or_Later) {
12 // Python-header-file: Include/ast.h:
13 
14 /// Availability: >= 2.5
15 alias _mod* mod_ty;
16 
17 /// Availability: >= 2.5
18 mod_ty* PyAST_FromNode(
19         const(node)* n, 
20         PyCompilerFlags* flags, 
21         const(char)* filename, 
22         PyArena* arena);
23 }