python-2.7.6/include/Python-ast.h Source File

Python-ast.h
Go to the documentation of this file.
1 /* File automatically generated by Parser/asdl_c.py. */
2 
3 #include "asdl.h"
4 
5 typedef struct _mod *mod_ty;
6 
7 typedef struct _stmt *stmt_ty;
8 
9 typedef struct _expr *expr_ty;
10 
11 typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5,
13 
14 typedef struct _slice *slice_ty;
15 
16 typedef enum _boolop { And=1, Or=2 } boolop_ty;
17 
18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
19  RShift=8, BitOr=9, BitXor=10, BitAnd=11, FloorDiv=12 }
21 
22 typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty;
23 
24 typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
25  In=9, NotIn=10 } cmpop_ty;
26 
28 
30 
31 typedef struct _arguments *arguments_ty;
32 
33 typedef struct _keyword *keyword_ty;
34 
35 typedef struct _alias *alias_ty;
36 
37 
40 struct _mod {
42  union {
43  struct {
45  } Module;
46 
47  struct {
48  asdl_seq *body;
49  } Interactive;
50 
51  struct {
52  expr_ty body;
53  } Expression;
54 
55  struct {
56  asdl_seq *body;
57  } Suite;
58 
59  } v;
60 };
61 
69 struct _stmt {
71  union {
72  struct {
74  arguments_ty args;
77  } FunctionDef;
78 
79  struct {
82  asdl_seq *body;
84  } ClassDef;
85 
86  struct {
87  expr_ty value;
88  } Return;
89 
90  struct {
92  } Delete;
93 
94  struct {
96  expr_ty value;
97  } Assign;
98 
99  struct {
100  expr_ty target;
102  expr_ty value;
103  } AugAssign;
104 
105  struct {
106  expr_ty dest;
108  bool nl;
109  } Print;
110 
111  struct {
112  expr_ty target;
113  expr_ty iter;
114  asdl_seq *body;
116  } For;
117 
118  struct {
119  expr_ty test;
120  asdl_seq *body;
121  asdl_seq *orelse;
122  } While;
123 
124  struct {
125  expr_ty test;
126  asdl_seq *body;
127  asdl_seq *orelse;
128  } If;
129 
130  struct {
131  expr_ty context_expr;
132  expr_ty optional_vars;
133  asdl_seq *body;
134  } With;
135 
136  struct {
137  expr_ty type;
138  expr_ty inst;
139  expr_ty tback;
140  } Raise;
141 
142  struct {
143  asdl_seq *body;
145  asdl_seq *orelse;
146  } TryExcept;
147 
148  struct {
149  asdl_seq *body;
151  } TryFinally;
152 
153  struct {
154  expr_ty test;
155  expr_ty msg;
156  } Assert;
157 
158  struct {
160  } Import;
161 
162  struct {
164  asdl_seq *names;
165  int level;
166  } ImportFrom;
167 
168  struct {
169  expr_ty body;
170  expr_ty globals;
171  expr_ty locals;
172  } Exec;
173 
174  struct {
175  asdl_seq *names;
176  } Global;
177 
178  struct {
179  expr_ty value;
180  } Expr;
181 
182  } v;
183  int lineno;
185 };
186 
193 struct _expr {
195  union {
196  struct {
199  } BoolOp;
200 
201  struct {
202  expr_ty left;
204  expr_ty right;
205  } BinOp;
206 
207  struct {
209  expr_ty operand;
210  } UnaryOp;
211 
212  struct {
213  arguments_ty args;
214  expr_ty body;
215  } Lambda;
216 
217  struct {
218  expr_ty test;
219  expr_ty body;
220  expr_ty orelse;
221  } IfExp;
222 
223  struct {
225  asdl_seq *values;
226  } Dict;
227 
228  struct {
230  } Set;
231 
232  struct {
233  expr_ty elt;
235  } ListComp;
236 
237  struct {
238  expr_ty elt;
240  } SetComp;
241 
242  struct {
243  expr_ty key;
244  expr_ty value;
246  } DictComp;
247 
248  struct {
249  expr_ty elt;
251  } GeneratorExp;
252 
253  struct {
254  expr_ty value;
255  } Yield;
256 
257  struct {
258  expr_ty left;
261  } Compare;
262 
263  struct {
264  expr_ty func;
267  expr_ty starargs;
268  expr_ty kwargs;
269  } Call;
270 
271  struct {
272  expr_ty value;
273  } Repr;
274 
275  struct {
276  object n;
277  } Num;
278 
279  struct {
280  string s;
281  } Str;
282 
283  struct {
284  expr_ty value;
287  } Attribute;
288 
289  struct {
290  expr_ty value;
291  slice_ty slice;
293  } Subscript;
294 
295  struct {
298  } Name;
299 
300  struct {
301  asdl_seq *elts;
303  } List;
304 
305  struct {
306  asdl_seq *elts;
308  } Tuple;
309 
310  } v;
311  int lineno;
313 };
314 
316 struct _slice {
318  union {
319  struct {
320  expr_ty lower;
321  expr_ty upper;
322  expr_ty step;
323  } Slice;
324 
325  struct {
327  } ExtSlice;
328 
329  struct {
330  expr_ty value;
331  } Index;
332 
333  } v;
334 };
335 
337  expr_ty target;
338  expr_ty iter;
340 };
341 
345  union {
346  struct {
347  expr_ty type;
348  expr_ty name;
350  } ExceptHandler;
351 
352  } v;
353  int lineno;
355 };
356 
357 struct _arguments {
362 };
363 
364 struct _keyword {
366  expr_ty value;
367 };
368 
369 struct _alias {
372 };
373 
374 
375 #define Module(a0, a1) _Py_Module(a0, a1)
376 mod_ty _Py_Module(asdl_seq * body, PyArena *arena);
377 #define Interactive(a0, a1) _Py_Interactive(a0, a1)
378 mod_ty _Py_Interactive(asdl_seq * body, PyArena *arena);
379 #define Expression(a0, a1) _Py_Expression(a0, a1)
380 mod_ty _Py_Expression(expr_ty body, PyArena *arena);
381 #define Suite(a0, a1) _Py_Suite(a0, a1)
382 mod_ty _Py_Suite(asdl_seq * body, PyArena *arena);
383 #define FunctionDef(a0, a1, a2, a3, a4, a5, a6) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6)
384 stmt_ty _Py_FunctionDef(identifier name, arguments_ty args, asdl_seq * body,
385  asdl_seq * decorator_list, int lineno, int col_offset,
386  PyArena *arena);
387 #define ClassDef(a0, a1, a2, a3, a4, a5, a6) _Py_ClassDef(a0, a1, a2, a3, a4, a5, a6)
388 stmt_ty _Py_ClassDef(identifier name, asdl_seq * bases, asdl_seq * body,
389  asdl_seq * decorator_list, int lineno, int col_offset,
390  PyArena *arena);
391 #define Return(a0, a1, a2, a3) _Py_Return(a0, a1, a2, a3)
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
393 #define Delete(a0, a1, a2, a3) _Py_Delete(a0, a1, a2, a3)
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
395  *arena);
396 #define Assign(a0, a1, a2, a3, a4) _Py_Assign(a0, a1, a2, a3, a4)
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
398  col_offset, PyArena *arena);
399 #define AugAssign(a0, a1, a2, a3, a4, a5) _Py_AugAssign(a0, a1, a2, a3, a4, a5)
400 stmt_ty _Py_AugAssign(expr_ty target, operator_ty op, expr_ty value, int
401  lineno, int col_offset, PyArena *arena);
402 #define Print(a0, a1, a2, a3, a4, a5) _Py_Print(a0, a1, a2, a3, a4, a5)
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, int
404  col_offset, PyArena *arena);
405 #define For(a0, a1, a2, a3, a4, a5, a6) _Py_For(a0, a1, a2, a3, a4, a5, a6)
406 stmt_ty _Py_For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq *
407  orelse, int lineno, int col_offset, PyArena *arena);
408 #define While(a0, a1, a2, a3, a4, a5) _Py_While(a0, a1, a2, a3, a4, a5)
409 stmt_ty _Py_While(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno,
410  int col_offset, PyArena *arena);
411 #define If(a0, a1, a2, a3, a4, a5) _Py_If(a0, a1, a2, a3, a4, a5)
412 stmt_ty _Py_If(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno,
413  int col_offset, PyArena *arena);
414 #define With(a0, a1, a2, a3, a4, a5) _Py_With(a0, a1, a2, a3, a4, a5)
415 stmt_ty _Py_With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body,
416  int lineno, int col_offset, PyArena *arena);
417 #define Raise(a0, a1, a2, a3, a4, a5) _Py_Raise(a0, a1, a2, a3, a4, a5)
418 stmt_ty _Py_Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int
419  col_offset, PyArena *arena);
420 #define TryExcept(a0, a1, a2, a3, a4, a5) _Py_TryExcept(a0, a1, a2, a3, a4, a5)
421 stmt_ty _Py_TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse,
422  int lineno, int col_offset, PyArena *arena);
423 #define TryFinally(a0, a1, a2, a3, a4) _Py_TryFinally(a0, a1, a2, a3, a4)
424 stmt_ty _Py_TryFinally(asdl_seq * body, asdl_seq * finalbody, int lineno, int
425  col_offset, PyArena *arena);
426 #define Assert(a0, a1, a2, a3, a4) _Py_Assert(a0, a1, a2, a3, a4)
427 stmt_ty _Py_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset,
428  PyArena *arena);
429 #define Import(a0, a1, a2, a3) _Py_Import(a0, a1, a2, a3)
430 stmt_ty _Py_Import(asdl_seq * names, int lineno, int col_offset, PyArena
431  *arena);
432 #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5)
433 stmt_ty _Py_ImportFrom(identifier module, asdl_seq * names, int level, int
434  lineno, int col_offset, PyArena *arena);
435 #define Exec(a0, a1, a2, a3, a4, a5) _Py_Exec(a0, a1, a2, a3, a4, a5)
436 stmt_ty _Py_Exec(expr_ty body, expr_ty globals, expr_ty locals, int lineno, int
437  col_offset, PyArena *arena);
438 #define Global(a0, a1, a2, a3) _Py_Global(a0, a1, a2, a3)
439 stmt_ty _Py_Global(asdl_seq * names, int lineno, int col_offset, PyArena
440  *arena);
441 #define Expr(a0, a1, a2, a3) _Py_Expr(a0, a1, a2, a3)
442 stmt_ty _Py_Expr(expr_ty value, int lineno, int col_offset, PyArena *arena);
443 #define Pass(a0, a1, a2) _Py_Pass(a0, a1, a2)
444 stmt_ty _Py_Pass(int lineno, int col_offset, PyArena *arena);
445 #define Break(a0, a1, a2) _Py_Break(a0, a1, a2)
446 stmt_ty _Py_Break(int lineno, int col_offset, PyArena *arena);
447 #define Continue(a0, a1, a2) _Py_Continue(a0, a1, a2)
448 stmt_ty _Py_Continue(int lineno, int col_offset, PyArena *arena);
449 #define BoolOp(a0, a1, a2, a3, a4) _Py_BoolOp(a0, a1, a2, a3, a4)
450 expr_ty _Py_BoolOp(boolop_ty op, asdl_seq * values, int lineno, int col_offset,
451  PyArena *arena);
452 #define BinOp(a0, a1, a2, a3, a4, a5) _Py_BinOp(a0, a1, a2, a3, a4, a5)
453 expr_ty _Py_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int
454  col_offset, PyArena *arena);
455 #define UnaryOp(a0, a1, a2, a3, a4) _Py_UnaryOp(a0, a1, a2, a3, a4)
456 expr_ty _Py_UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset,
457  PyArena *arena);
458 #define Lambda(a0, a1, a2, a3, a4) _Py_Lambda(a0, a1, a2, a3, a4)
459 expr_ty _Py_Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset,
460  PyArena *arena);
461 #define IfExp(a0, a1, a2, a3, a4, a5) _Py_IfExp(a0, a1, a2, a3, a4, a5)
462 expr_ty _Py_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int
463  col_offset, PyArena *arena);
464 #define Dict(a0, a1, a2, a3, a4) _Py_Dict(a0, a1, a2, a3, a4)
465 expr_ty _Py_Dict(asdl_seq * keys, asdl_seq * values, int lineno, int
466  col_offset, PyArena *arena);
467 #define Set(a0, a1, a2, a3) _Py_Set(a0, a1, a2, a3)
468 expr_ty _Py_Set(asdl_seq * elts, int lineno, int col_offset, PyArena *arena);
469 #define ListComp(a0, a1, a2, a3, a4) _Py_ListComp(a0, a1, a2, a3, a4)
470 expr_ty _Py_ListComp(expr_ty elt, asdl_seq * generators, int lineno, int
471  col_offset, PyArena *arena);
472 #define SetComp(a0, a1, a2, a3, a4) _Py_SetComp(a0, a1, a2, a3, a4)
473 expr_ty _Py_SetComp(expr_ty elt, asdl_seq * generators, int lineno, int
474  col_offset, PyArena *arena);
475 #define DictComp(a0, a1, a2, a3, a4, a5) _Py_DictComp(a0, a1, a2, a3, a4, a5)
476 expr_ty _Py_DictComp(expr_ty key, expr_ty value, asdl_seq * generators, int
477  lineno, int col_offset, PyArena *arena);
478 #define GeneratorExp(a0, a1, a2, a3, a4) _Py_GeneratorExp(a0, a1, a2, a3, a4)
479 expr_ty _Py_GeneratorExp(expr_ty elt, asdl_seq * generators, int lineno, int
480  col_offset, PyArena *arena);
481 #define Yield(a0, a1, a2, a3) _Py_Yield(a0, a1, a2, a3)
482 expr_ty _Py_Yield(expr_ty value, int lineno, int col_offset, PyArena *arena);
483 #define Compare(a0, a1, a2, a3, a4, a5) _Py_Compare(a0, a1, a2, a3, a4, a5)
484 expr_ty _Py_Compare(expr_ty left, asdl_int_seq * ops, asdl_seq * comparators,
485  int lineno, int col_offset, PyArena *arena);
486 #define Call(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Call(a0, a1, a2, a3, a4, a5, a6, a7)
487 expr_ty _Py_Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty
488  starargs, expr_ty kwargs, int lineno, int col_offset, PyArena
489  *arena);
490 #define Repr(a0, a1, a2, a3) _Py_Repr(a0, a1, a2, a3)
491 expr_ty _Py_Repr(expr_ty value, int lineno, int col_offset, PyArena *arena);
492 #define Num(a0, a1, a2, a3) _Py_Num(a0, a1, a2, a3)
493 expr_ty _Py_Num(object n, int lineno, int col_offset, PyArena *arena);
494 #define Str(a0, a1, a2, a3) _Py_Str(a0, a1, a2, a3)
495 expr_ty _Py_Str(string s, int lineno, int col_offset, PyArena *arena);
496 #define Attribute(a0, a1, a2, a3, a4, a5) _Py_Attribute(a0, a1, a2, a3, a4, a5)
497 expr_ty _Py_Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int
498  lineno, int col_offset, PyArena *arena);
499 #define Subscript(a0, a1, a2, a3, a4, a5) _Py_Subscript(a0, a1, a2, a3, a4, a5)
500 expr_ty _Py_Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int
501  lineno, int col_offset, PyArena *arena);
502 #define Name(a0, a1, a2, a3, a4) _Py_Name(a0, a1, a2, a3, a4)
503 expr_ty _Py_Name(identifier id, expr_context_ty ctx, int lineno, int
504  col_offset, PyArena *arena);
505 #define List(a0, a1, a2, a3, a4) _Py_List(a0, a1, a2, a3, a4)
506 expr_ty _Py_List(asdl_seq * elts, expr_context_ty ctx, int lineno, int
507  col_offset, PyArena *arena);
508 #define Tuple(a0, a1, a2, a3, a4) _Py_Tuple(a0, a1, a2, a3, a4)
509 expr_ty _Py_Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int
510  col_offset, PyArena *arena);
511 #define Ellipsis(a0) _Py_Ellipsis(a0)
512 slice_ty _Py_Ellipsis(PyArena *arena);
513 #define Slice(a0, a1, a2, a3) _Py_Slice(a0, a1, a2, a3)
514 slice_ty _Py_Slice(expr_ty lower, expr_ty upper, expr_ty step, PyArena *arena);
515 #define ExtSlice(a0, a1) _Py_ExtSlice(a0, a1)
516 slice_ty _Py_ExtSlice(asdl_seq * dims, PyArena *arena);
517 #define Index(a0, a1) _Py_Index(a0, a1)
518 slice_ty _Py_Index(expr_ty value, PyArena *arena);
519 #define comprehension(a0, a1, a2, a3) _Py_comprehension(a0, a1, a2, a3)
520 comprehension_ty _Py_comprehension(expr_ty target, expr_ty iter, asdl_seq *
521  ifs, PyArena *arena);
522 #define ExceptHandler(a0, a1, a2, a3, a4, a5) _Py_ExceptHandler(a0, a1, a2, a3, a4, a5)
523 excepthandler_ty _Py_ExceptHandler(expr_ty type, expr_ty name, asdl_seq * body,
524  int lineno, int col_offset, PyArena *arena);
525 #define arguments(a0, a1, a2, a3, a4) _Py_arguments(a0, a1, a2, a3, a4)
526 arguments_ty _Py_arguments(asdl_seq * args, identifier vararg, identifier
527  kwarg, asdl_seq * defaults, PyArena *arena);
528 #define keyword(a0, a1, a2) _Py_keyword(a0, a1, a2)
529 keyword_ty _Py_keyword(identifier arg, expr_ty value, PyArena *arena);
530 #define alias(a0, a1, a2) _Py_alias(a0, a1, a2)
531 alias_ty _Py_alias(identifier name, identifier asname, PyArena *arena);
532 
533 PyObject* PyAST_mod2obj(mod_ty t);
534 mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode);
535 int PyAST_Check(PyObject* obj);
slice_ty _Py_Slice(expr_ty lower, expr_ty upper, expr_ty step, PyArena *arena)
stmt_ty _Py_While(expr_ty test, asdl_seq *body, asdl_seq *orelse, int lineno, int col_offset, PyArena *arena)
Definition: Python-ast.h:16
struct _stmt::@6::@9 Return
struct _expr::@27::@37 DictComp
slice_ty _Py_Index(expr_ty value, PyArena *arena)
int PyAST_Check(PyObject *obj)
struct _arena PyArena
Definition: pyarena.h:11
expr_ty tback
Definition: Python-ast.h:139
stmt_ty _Py_For(expr_ty target, expr_ty iter, asdl_seq *body, asdl_seq *orelse, int lineno, int col_offset, PyArena *arena)
enum _mod_kind kind
Definition: Python-ast.h:41
register char ** s
Definition: stringobject.h:174
struct _stmt::@6::@12 AugAssign
expr_ty _Py_Set(asdl_seq *elts, int lineno, int col_offset, PyArena *arena)
slice_ty _Py_ExtSlice(asdl_seq *dims, PyArena *arena)
struct _expr::@27::@43 Num
expr_ty target
Definition: Python-ast.h:100
expr_ty elt
Definition: Python-ast.h:233
arguments_ty args
Definition: Python-ast.h:213
struct _excepthandler::@54::@55 ExceptHandler
asdl_seq * elts
Definition: Python-ast.h:229
asdl_seq * args
Definition: Python-ast.h:265
union _mod::@1 v
struct _expr::@27::@41 Call
expr_ty _Py_Compare(expr_ty left, asdl_int_seq *ops, asdl_seq *comparators, int lineno, int col_offset, PyArena *arena)
stmt_ty _Py_TryFinally(asdl_seq *body, asdl_seq *finalbody, int lineno, int col_offset, PyArena *arena)
Definition: Python-ast.h:16
mod_ty _Py_Suite(asdl_seq *body, PyArena *arena)
expr_ty body
Definition: Python-ast.h:214
expr_ty value
Definition: Python-ast.h:366
struct _keyword * keyword_ty
Definition: Python-ast.h:33
struct _slice * slice_ty
Definition: Python-ast.h:14
asdl_int_seq * ops
Definition: Python-ast.h:259
expr_ty locals
Definition: Python-ast.h:171
PyObject * PyAST_mod2obj(mod_ty t)
stmt_ty _Py_Print(expr_ty dest, asdl_seq *values, bool nl, int lineno, int col_offset, PyArena *arena)
stmt_ty _Py_Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int col_offset, PyArena *arena)
expr_ty inst
Definition: Python-ast.h:138
struct _mod::@1::@5 Suite
stmt_ty _Py_Expr(expr_ty value, int lineno, int col_offset, PyArena *arena)
_unaryop
Definition: Python-ast.h:22
enum _boolop boolop_ty
operator_ty op
Definition: Python-ast.h:101
size_t n
Definition: longobject.h:93
identifier arg
Definition: Python-ast.h:365
struct _stmt::@6::@16 If
PyObject * key
Definition: abstract.h:444
arguments_ty _Py_arguments(asdl_seq *args, identifier vararg, identifier kwarg, asdl_seq *defaults, PyArena *arena)
expr_ty _Py_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int col_offset, PyArena *arena)
struct _mod::@1::@2 Module
PyObject * args
Definition: abstract.h:305
struct _expr::@27::@40 Compare
struct _expr::@27::@49 Tuple
_mod_kind
Definition: Python-ast.h:38
expr_ty _Py_List(asdl_seq *elts, expr_context_ty ctx, int lineno, int col_offset, PyArena *arena)
PyObject PyObject * names
Definition: code.h:101
_expr_kind
Definition: Python-ast.h:187
struct _stmt::@6::@25 Global
enum _excepthandler_kind kind
Definition: Python-ast.h:344
stmt_ty _Py_Import(asdl_seq *names, int lineno, int col_offset, PyArena *arena)
expr_ty _Py_DictComp(expr_ty key, expr_ty value, asdl_seq *generators, int lineno, int col_offset, PyArena *arena)
identifier asname
Definition: Python-ast.h:371
expr_ty _Py_ListComp(expr_ty elt, asdl_seq *generators, int lineno, int col_offset, PyArena *arena)
struct _excepthandler * excepthandler_ty
Definition: Python-ast.h:29
expr_ty test
Definition: Python-ast.h:119
object n
Definition: Python-ast.h:276
identifier vararg
Definition: Python-ast.h:359
int level
Definition: Python-ast.h:165
expr_ty _Py_Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int lineno, int col_offset, PyArena *arena)
asdl_seq * body
Definition: Python-ast.h:349
struct _expr::@27::@30 UnaryOp
mod_ty PyAST_obj2mod(PyObject *ast, PyArena *arena, int mode)
Definition: Python-ast.h:25
expr_ty body
Definition: Python-ast.h:52
stmt_ty _Py_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, PyArena *arena)
int lineno
Definition: Python-ast.h:311
expr_ty _Py_Dict(asdl_seq *keys, asdl_seq *values, int lineno, int col_offset, PyArena *arena)
struct _arguments * arguments_ty
Definition: Python-ast.h:31
struct _expr::@27::@33 Dict
_operator
Definition: Python-ast.h:18
stmt_ty _Py_Delete(asdl_seq *targets, int lineno, int col_offset, PyArena *arena)
stmt_ty _Py_TryExcept(asdl_seq *body, asdl_seq *handlers, asdl_seq *orelse, int lineno, int col_offset, PyArena *arena)
expr_ty type
Definition: Python-ast.h:137
unaryop_ty op
Definition: Python-ast.h:208
identifier kwarg
Definition: Python-ast.h:360
struct _expr::@27::@31 Lambda
asdl_seq * body
Definition: Python-ast.h:44
expr_ty msg
Definition: Python-ast.h:155
union _expr::@27 v
int type
Definition: node.h:20
struct _expr::@27::@34 Set
struct _expr::@27::@35 ListComp
stmt_ty _Py_FunctionDef(identifier name, arguments_ty args, asdl_seq *body, asdl_seq *decorator_list, int lineno, int col_offset, PyArena *arena)
stmt_ty _Py_ImportFrom(identifier module, asdl_seq *names, int level, int lineno, int col_offset, PyArena *arena)
expr_ty key
Definition: Python-ast.h:243
union _excepthandler::@54 v
asdl_seq * defaults
Definition: Python-ast.h:361
union _slice::@50 v
struct _expr::@27::@38 GeneratorExp
Definition: Python-ast.h:24
asdl_seq * decorator_list
Definition: Python-ast.h:76
struct _expr::@27::@47 Name
int col_offset
Definition: Python-ast.h:312
expr_ty kwargs
Definition: Python-ast.h:268
expr_ty starargs
Definition: Python-ast.h:267
expr_ty target
Definition: Python-ast.h:337
Definition: Python-ast.h:24
expr_ty right
Definition: Python-ast.h:204
expr_ty _Py_Repr(expr_ty value, int lineno, int col_offset, PyArena *arena)
mod_ty _Py_Expression(expr_ty body, PyArena *arena)
stmt_ty _Py_With(expr_ty context_expr, expr_ty optional_vars, asdl_seq *body, int lineno, int col_offset, PyArena *arena)
struct _slice::@50::@53 Index
operator_ty op
Definition: Python-ast.h:203
Definition: Python-ast.h:22
struct _expr::@27::@44 Str
slice_ty slice
Definition: Python-ast.h:291
expr_ty left
Definition: Python-ast.h:202
Definition: Python-ast.h:24
asdl_seq * comparators
Definition: Python-ast.h:260
struct _stmt::@6::@18 Raise
asdl_seq * keywords
Definition: Python-ast.h:266
arguments_ty args
Definition: Python-ast.h:74
slice_ty _Py_Ellipsis(PyArena *arena)
int lineno
Definition: Python-ast.h:183
_stmt_kind
Definition: Python-ast.h:62
expr_ty dest
Definition: Python-ast.h:106
_slice_kind
Definition: Python-ast.h:315
struct _expr::@27::@29 BinOp
expr_ty _Py_SetComp(expr_ty elt, asdl_seq *generators, int lineno, int col_offset, PyArena *arena)
struct _expr::@27::@46 Subscript
struct _stmt::@6::@23 ImportFrom
struct _slice::@50::@51 Slice
asdl_seq * targets
Definition: Python-ast.h:91
struct _stmt::@6::@7 FunctionDef
stmt_ty _Py_Exec(expr_ty body, expr_ty globals, expr_ty locals, int lineno, int col_offset, PyArena *arena)
stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena)
struct _stmt::@6::@13 Print
expr_ty value
Definition: Python-ast.h:244
asdl_seq * values
Definition: Python-ast.h:198
stmt_ty _Py_AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int col_offset, PyArena *arena)
struct _stmt::@6::@21 Assert
expr_ty _Py_UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset, PyArena *arena)
Definition: Python-ast.h:18
struct _mod * mod_ty
Definition: Python-ast.h:5
bool nl
Definition: Python-ast.h:108
Definition: Python-ast.h:18
stmt_ty _Py_Break(int lineno, int col_offset, PyArena *arena)
alias_ty _Py_alias(identifier name, identifier asname, PyArena *arena)
expr_ty optional_vars
Definition: Python-ast.h:132
expr_ty context_expr
Definition: Python-ast.h:131
struct _stmt::@6::@8 ClassDef
Definition: Python-ast.h:18
char char char char char * name
Definition: abstract.h:355
expr_ty _Py_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int col_offset, PyArena *arena)
expr_ty operand
Definition: Python-ast.h:209
asdl_seq * handlers
Definition: Python-ast.h:144
expr_ty value
Definition: Python-ast.h:330
Definition: Python-ast.h:24
expr_ty iter
Definition: Python-ast.h:113
_cmpop
Definition: Python-ast.h:24
struct _expr * expr_ty
Definition: Python-ast.h:9
PyObject * value
Definition: abstract.h:1186
enum _expr_context expr_context_ty
asdl_seq * generators
Definition: Python-ast.h:234
struct _stmt::@6::@19 TryExcept
stmt_ty _Py_If(expr_ty test, asdl_seq *body, asdl_seq *orelse, int lineno, int col_offset, PyArena *arena)
asdl_seq * keys
Definition: Python-ast.h:224
_expr_context
Definition: Python-ast.h:11
expr_ty upper
Definition: Python-ast.h:321
string s
Definition: Python-ast.h:280
identifier name
Definition: Python-ast.h:73
PyObject PyObject * step
Definition: sliceobject.h:32
asdl_seq * finalbody
Definition: Python-ast.h:150
expr_ty type
Definition: Python-ast.h:347
int col_offset
Definition: Python-ast.h:184
expr_ty step
Definition: Python-ast.h:322
_excepthandler_kind
Definition: Python-ast.h:342
keyword_ty _Py_keyword(identifier arg, expr_ty value, PyArena *arena)
#define test
Definition: graminit.h:51
enum _expr_kind kind
Definition: Python-ast.h:194
struct _expr::@27::@48 List
identifier name
Definition: Python-ast.h:370
expr_ty value
Definition: Python-ast.h:87
expr_ty _Py_Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset, PyArena *arena)
mod_ty _Py_Module(asdl_seq *body, PyArena *arena)
asdl_seq * orelse
Definition: Python-ast.h:115
struct _expr::@27::@42 Repr
struct _expr::@27::@36 SetComp
stmt_ty _Py_Pass(int lineno, int col_offset, PyArena *arena)
expr_ty _Py_GeneratorExp(expr_ty elt, asdl_seq *generators, int lineno, int col_offset, PyArena *arena)
enum _operator operator_ty
Definition: Python-ast.h:18
struct _stmt::@6::@11 Assign
struct _expr::@27::@45 Attribute
identifier id
Definition: Python-ast.h:296
struct _alias * alias_ty
Definition: Python-ast.h:35
PyObject PyObject PyObject * globals
Definition: eval.h:13
struct _comprehension * comprehension_ty
Definition: Python-ast.h:27
identifier attr
Definition: Python-ast.h:285
expr_ty _Py_Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int lineno, int col_offset, PyArena *arena)
int char int int col_offset
Definition: node.h:20
int mode
Definition: dtoa.h:7
struct _expr::@27::@39 Yield
asdl_seq * names
Definition: Python-ast.h:159
_boolop
Definition: Python-ast.h:16
PyObject * obj
Definition: abstract.h:1205
expr_ty lower
Definition: Python-ast.h:320
struct _stmt::@6::@14 For
expr_context_ty ctx
Definition: Python-ast.h:286
expr_ty iter
Definition: Python-ast.h:338
struct _stmt::@6::@20 TryFinally
PyObject PyObject PyObject PyObject * locals
Definition: eval.h:13
Definition: asdl.h:20
asdl_seq * body
Definition: Python-ast.h:75
stmt_ty _Py_ClassDef(identifier name, asdl_seq *bases, asdl_seq *body, asdl_seq *decorator_list, int lineno, int col_offset, PyArena *arena)
asdl_seq * dims
Definition: Python-ast.h:326
stmt_ty _Py_Global(asdl_seq *names, int lineno, int col_offset, PyArena *arena)
expr_ty _Py_Tuple(asdl_seq *elts, expr_context_ty ctx, int lineno, int col_offset, PyArena *arena)
expr_ty _Py_Num(object n, int lineno, int col_offset, PyArena *arena)
struct _mod::@1::@4 Expression
struct _stmt::@6::@10 Delete
PyObject PyObject PyObject int level
Definition: import.h:19
boolop_ty op
Definition: Python-ast.h:197
expr_ty _Py_Call(expr_ty func, asdl_seq *args, asdl_seq *keywords, expr_ty starargs, expr_ty kwargs, int lineno, int col_offset, PyArena *arena)
struct _stmt::@6::@15 While
enum _unaryop unaryop_ty
void * arg
Definition: ceval.h:41
mod_ty _Py_Interactive(asdl_seq *body, PyArena *arena)
Definition: Python-ast.h:11
excepthandler_ty _Py_ExceptHandler(expr_ty type, expr_ty name, asdl_seq *body, int lineno, int col_offset, PyArena *arena)
expr_ty _Py_Str(string s, int lineno, int col_offset, PyArena *arena)
expr_ty test
Definition: Python-ast.h:218
identifier module
Definition: Python-ast.h:163
struct _slice::@50::@52 ExtSlice
struct _expr::@27::@32 IfExp
stmt_ty _Py_Continue(int lineno, int col_offset, PyArena *arena)
Definition: Python-ast.h:24
expr_ty body
Definition: Python-ast.h:169
asdl_seq * args
Definition: Python-ast.h:358
asdl_seq * ifs
Definition: Python-ast.h:339
enum _cmpop cmpop_ty
expr_ty name
Definition: Python-ast.h:348
asdl_seq * bases
Definition: Python-ast.h:81
union _stmt::@6 v
Definition: Python-ast.h:18
asdl_seq * values
Definition: Python-ast.h:107
enum _stmt_kind kind
Definition: Python-ast.h:70
comprehension_ty _Py_comprehension(expr_ty target, expr_ty iter, asdl_seq *ifs, PyArena *arena)
struct _stmt::@6::@24 Exec
expr_ty orelse
Definition: Python-ast.h:220
struct _stmt::@6::@22 Import
expr_ty _Py_Yield(expr_ty value, int lineno, int col_offset, PyArena *arena)
struct _stmt * stmt_ty
Definition: Python-ast.h:7
expr_ty _Py_Name(identifier id, expr_context_ty ctx, int lineno, int col_offset, PyArena *arena)
stmt_ty _Py_Assign(asdl_seq *targets, expr_ty value, int lineno, int col_offset, PyArena *arena)
expr_ty _Py_BoolOp(boolop_ty op, asdl_seq *values, int lineno, int col_offset, PyArena *arena)
Definition: Python-ast.h:24
struct _stmt::@6::@26 Expr
struct _mod::@1::@3 Interactive
struct _stmt::@6::@17 With
enum _slice_kind kind
Definition: Python-ast.h:317
expr_ty func
Definition: Python-ast.h:264
struct _expr::@27::@28 BoolOp
expr_ty globals
Definition: Python-ast.h:170
int char int lineno
Definition: node.h:20