Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1 | /* File automatically generated by Parser/asdl_c.py. */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 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, |
| 12 | Param=6 } expr_context_ty; |
| 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 } |
| 20 | operator_ty; |
| 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 | |
| 27 | typedef struct _comprehension *comprehension_ty; |
| 28 | |
| 29 | typedef struct _excepthandler *excepthandler_ty; |
| 30 | |
| 31 | typedef struct _arguments *arguments_ty; |
| 32 | |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 33 | typedef struct _arg *arg_ty; |
| 34 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 35 | typedef struct _keyword *keyword_ty; |
| 36 | |
| 37 | typedef struct _alias *alias_ty; |
| 38 | |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 39 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 40 | enum _mod_kind {Module_kind=1, Interactive_kind=2, Expression_kind=3, |
| 41 | Suite_kind=4}; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 42 | struct _mod { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 43 | enum _mod_kind kind; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 44 | union { |
| 45 | struct { |
| 46 | asdl_seq *body; |
| 47 | } Module; |
| 48 | |
| 49 | struct { |
| 50 | asdl_seq *body; |
| 51 | } Interactive; |
| 52 | |
| 53 | struct { |
| 54 | expr_ty body; |
| 55 | } Expression; |
| 56 | |
| 57 | struct { |
| 58 | asdl_seq *body; |
| 59 | } Suite; |
| 60 | |
| 61 | } v; |
| 62 | }; |
| 63 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 64 | enum _stmt_kind {FunctionDef_kind=1, ClassDef_kind=2, Return_kind=3, |
Georg Brandl | 88fc664 | 2007-02-09 21:28:07 +0000 | [diff] [blame] | 65 | Delete_kind=4, Assign_kind=5, AugAssign_kind=6, For_kind=7, |
| 66 | While_kind=8, If_kind=9, With_kind=10, Raise_kind=11, |
| 67 | TryExcept_kind=12, TryFinally_kind=13, Assert_kind=14, |
| 68 | Import_kind=15, ImportFrom_kind=16, Global_kind=17, |
| 69 | Expr_kind=18, Pass_kind=19, Break_kind=20, Continue_kind=21}; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 70 | struct _stmt { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 71 | enum _stmt_kind kind; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 72 | union { |
| 73 | struct { |
| 74 | identifier name; |
| 75 | arguments_ty args; |
| 76 | asdl_seq *body; |
| 77 | asdl_seq *decorators; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 78 | expr_ty returns; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 79 | } FunctionDef; |
| 80 | |
| 81 | struct { |
| 82 | identifier name; |
| 83 | asdl_seq *bases; |
| 84 | asdl_seq *body; |
| 85 | } ClassDef; |
| 86 | |
| 87 | struct { |
| 88 | expr_ty value; |
| 89 | } Return; |
| 90 | |
| 91 | struct { |
| 92 | asdl_seq *targets; |
| 93 | } Delete; |
| 94 | |
| 95 | struct { |
| 96 | asdl_seq *targets; |
| 97 | expr_ty value; |
| 98 | } Assign; |
| 99 | |
| 100 | struct { |
| 101 | expr_ty target; |
| 102 | operator_ty op; |
| 103 | expr_ty value; |
| 104 | } AugAssign; |
| 105 | |
| 106 | struct { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 107 | expr_ty target; |
| 108 | expr_ty iter; |
| 109 | asdl_seq *body; |
| 110 | asdl_seq *orelse; |
| 111 | } For; |
| 112 | |
| 113 | struct { |
| 114 | expr_ty test; |
| 115 | asdl_seq *body; |
| 116 | asdl_seq *orelse; |
| 117 | } While; |
| 118 | |
| 119 | struct { |
| 120 | expr_ty test; |
| 121 | asdl_seq *body; |
| 122 | asdl_seq *orelse; |
| 123 | } If; |
| 124 | |
| 125 | struct { |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 126 | expr_ty context_expr; |
| 127 | expr_ty optional_vars; |
| 128 | asdl_seq *body; |
| 129 | } With; |
| 130 | |
| 131 | struct { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 132 | expr_ty type; |
| 133 | expr_ty inst; |
| 134 | expr_ty tback; |
| 135 | } Raise; |
| 136 | |
| 137 | struct { |
| 138 | asdl_seq *body; |
| 139 | asdl_seq *handlers; |
| 140 | asdl_seq *orelse; |
| 141 | } TryExcept; |
| 142 | |
| 143 | struct { |
| 144 | asdl_seq *body; |
| 145 | asdl_seq *finalbody; |
| 146 | } TryFinally; |
| 147 | |
| 148 | struct { |
| 149 | expr_ty test; |
| 150 | expr_ty msg; |
| 151 | } Assert; |
| 152 | |
| 153 | struct { |
| 154 | asdl_seq *names; |
| 155 | } Import; |
| 156 | |
| 157 | struct { |
| 158 | identifier module; |
| 159 | asdl_seq *names; |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 160 | int level; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 161 | } ImportFrom; |
| 162 | |
| 163 | struct { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 164 | asdl_seq *names; |
| 165 | } Global; |
| 166 | |
| 167 | struct { |
| 168 | expr_ty value; |
| 169 | } Expr; |
| 170 | |
| 171 | } v; |
| 172 | int lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 173 | int col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 174 | }; |
| 175 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 176 | enum _expr_kind {BoolOp_kind=1, BinOp_kind=2, UnaryOp_kind=3, Lambda_kind=4, |
Guido van Rossum | 86e58e2 | 2006-08-28 15:27:34 +0000 | [diff] [blame] | 177 | IfExp_kind=5, Dict_kind=6, Set_kind=7, ListComp_kind=8, |
| 178 | GeneratorExp_kind=9, Yield_kind=10, Compare_kind=11, |
Thomas Wouters | 00e41de | 2007-02-23 19:56:57 +0000 | [diff] [blame^] | 179 | Call_kind=12, Num_kind=13, Str_kind=14, Bytes_kind=15, |
| 180 | Ellipsis_kind=16, Attribute_kind=17, Subscript_kind=18, |
| 181 | Name_kind=19, List_kind=20, Tuple_kind=21}; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 182 | struct _expr { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 183 | enum _expr_kind kind; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 184 | union { |
| 185 | struct { |
| 186 | boolop_ty op; |
| 187 | asdl_seq *values; |
| 188 | } BoolOp; |
| 189 | |
| 190 | struct { |
| 191 | expr_ty left; |
| 192 | operator_ty op; |
| 193 | expr_ty right; |
| 194 | } BinOp; |
| 195 | |
| 196 | struct { |
| 197 | unaryop_ty op; |
| 198 | expr_ty operand; |
| 199 | } UnaryOp; |
| 200 | |
| 201 | struct { |
| 202 | arguments_ty args; |
| 203 | expr_ty body; |
| 204 | } Lambda; |
| 205 | |
| 206 | struct { |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 207 | expr_ty test; |
| 208 | expr_ty body; |
| 209 | expr_ty orelse; |
| 210 | } IfExp; |
| 211 | |
| 212 | struct { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 213 | asdl_seq *keys; |
| 214 | asdl_seq *values; |
| 215 | } Dict; |
| 216 | |
| 217 | struct { |
Guido van Rossum | 86e58e2 | 2006-08-28 15:27:34 +0000 | [diff] [blame] | 218 | asdl_seq *elts; |
| 219 | } Set; |
| 220 | |
| 221 | struct { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 222 | expr_ty elt; |
| 223 | asdl_seq *generators; |
| 224 | } ListComp; |
| 225 | |
| 226 | struct { |
| 227 | expr_ty elt; |
| 228 | asdl_seq *generators; |
| 229 | } GeneratorExp; |
| 230 | |
| 231 | struct { |
| 232 | expr_ty value; |
| 233 | } Yield; |
| 234 | |
| 235 | struct { |
| 236 | expr_ty left; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 237 | asdl_int_seq *ops; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 238 | asdl_seq *comparators; |
| 239 | } Compare; |
| 240 | |
| 241 | struct { |
| 242 | expr_ty func; |
| 243 | asdl_seq *args; |
| 244 | asdl_seq *keywords; |
| 245 | expr_ty starargs; |
| 246 | expr_ty kwargs; |
| 247 | } Call; |
| 248 | |
| 249 | struct { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 250 | object n; |
| 251 | } Num; |
| 252 | |
| 253 | struct { |
| 254 | string s; |
| 255 | } Str; |
| 256 | |
| 257 | struct { |
Thomas Wouters | 00e41de | 2007-02-23 19:56:57 +0000 | [diff] [blame^] | 258 | string s; |
| 259 | } Bytes; |
| 260 | |
| 261 | struct { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 262 | expr_ty value; |
| 263 | identifier attr; |
| 264 | expr_context_ty ctx; |
| 265 | } Attribute; |
| 266 | |
| 267 | struct { |
| 268 | expr_ty value; |
| 269 | slice_ty slice; |
| 270 | expr_context_ty ctx; |
| 271 | } Subscript; |
| 272 | |
| 273 | struct { |
| 274 | identifier id; |
| 275 | expr_context_ty ctx; |
| 276 | } Name; |
| 277 | |
| 278 | struct { |
| 279 | asdl_seq *elts; |
| 280 | expr_context_ty ctx; |
| 281 | } List; |
| 282 | |
| 283 | struct { |
| 284 | asdl_seq *elts; |
| 285 | expr_context_ty ctx; |
| 286 | } Tuple; |
| 287 | |
| 288 | } v; |
| 289 | int lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 290 | int col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 291 | }; |
| 292 | |
Georg Brandl | 52318d6 | 2006-09-06 07:06:08 +0000 | [diff] [blame] | 293 | enum _slice_kind {Slice_kind=1, ExtSlice_kind=2, Index_kind=3}; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 294 | struct _slice { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 295 | enum _slice_kind kind; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 296 | union { |
| 297 | struct { |
| 298 | expr_ty lower; |
| 299 | expr_ty upper; |
| 300 | expr_ty step; |
| 301 | } Slice; |
| 302 | |
| 303 | struct { |
| 304 | asdl_seq *dims; |
| 305 | } ExtSlice; |
| 306 | |
| 307 | struct { |
| 308 | expr_ty value; |
| 309 | } Index; |
| 310 | |
| 311 | } v; |
| 312 | }; |
| 313 | |
| 314 | struct _comprehension { |
| 315 | expr_ty target; |
| 316 | expr_ty iter; |
| 317 | asdl_seq *ifs; |
| 318 | }; |
| 319 | |
| 320 | struct _excepthandler { |
| 321 | expr_ty type; |
Guido van Rossum | 16be03e | 2007-01-10 18:51:35 +0000 | [diff] [blame] | 322 | identifier name; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 323 | asdl_seq *body; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 324 | int lineno; |
| 325 | int col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 326 | }; |
| 327 | |
| 328 | struct _arguments { |
| 329 | asdl_seq *args; |
| 330 | identifier vararg; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 331 | expr_ty varargannotation; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 332 | asdl_seq *kwonlyargs; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 333 | identifier kwarg; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 334 | expr_ty kwargannotation; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 335 | asdl_seq *defaults; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 336 | asdl_seq *kw_defaults; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 337 | }; |
| 338 | |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 339 | enum _arg_kind {SimpleArg_kind=1, NestedArgs_kind=2}; |
| 340 | struct _arg { |
| 341 | enum _arg_kind kind; |
| 342 | union { |
| 343 | struct { |
| 344 | identifier arg; |
| 345 | expr_ty annotation; |
| 346 | } SimpleArg; |
| 347 | |
| 348 | struct { |
| 349 | asdl_seq *args; |
| 350 | } NestedArgs; |
| 351 | |
| 352 | } v; |
| 353 | }; |
| 354 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 355 | struct _keyword { |
| 356 | identifier arg; |
| 357 | expr_ty value; |
| 358 | }; |
| 359 | |
| 360 | struct _alias { |
| 361 | identifier name; |
| 362 | identifier asname; |
| 363 | }; |
| 364 | |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 365 | |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 366 | #define Module(a0, a1) _Py_Module(a0, a1) |
| 367 | mod_ty _Py_Module(asdl_seq * body, PyArena *arena); |
| 368 | #define Interactive(a0, a1) _Py_Interactive(a0, a1) |
| 369 | mod_ty _Py_Interactive(asdl_seq * body, PyArena *arena); |
| 370 | #define Expression(a0, a1) _Py_Expression(a0, a1) |
| 371 | mod_ty _Py_Expression(expr_ty body, PyArena *arena); |
| 372 | #define Suite(a0, a1) _Py_Suite(a0, a1) |
| 373 | mod_ty _Py_Suite(asdl_seq * body, PyArena *arena); |
| 374 | #define FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7) _Py_FunctionDef(a0, a1, a2, a3, a4, a5, a6, a7) |
| 375 | stmt_ty _Py_FunctionDef(identifier name, arguments_ty args, asdl_seq * body, |
| 376 | asdl_seq * decorators, expr_ty returns, int lineno, int |
| 377 | col_offset, PyArena *arena); |
| 378 | #define ClassDef(a0, a1, a2, a3, a4, a5) _Py_ClassDef(a0, a1, a2, a3, a4, a5) |
| 379 | stmt_ty _Py_ClassDef(identifier name, asdl_seq * bases, asdl_seq * body, int |
| 380 | lineno, int col_offset, PyArena *arena); |
| 381 | #define Return(a0, a1, a2, a3) _Py_Return(a0, a1, a2, a3) |
| 382 | stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena); |
| 383 | #define Delete(a0, a1, a2, a3) _Py_Delete(a0, a1, a2, a3) |
| 384 | stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena |
| 385 | *arena); |
| 386 | #define Assign(a0, a1, a2, a3, a4) _Py_Assign(a0, a1, a2, a3, a4) |
| 387 | stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 388 | col_offset, PyArena *arena); |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 389 | #define AugAssign(a0, a1, a2, a3, a4, a5) _Py_AugAssign(a0, a1, a2, a3, a4, a5) |
| 390 | stmt_ty _Py_AugAssign(expr_ty target, operator_ty op, expr_ty value, int |
| 391 | lineno, int col_offset, PyArena *arena); |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 392 | #define For(a0, a1, a2, a3, a4, a5, a6) _Py_For(a0, a1, a2, a3, a4, a5, a6) |
| 393 | stmt_ty _Py_For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq * |
| 394 | orelse, int lineno, int col_offset, PyArena *arena); |
| 395 | #define While(a0, a1, a2, a3, a4, a5) _Py_While(a0, a1, a2, a3, a4, a5) |
| 396 | stmt_ty _Py_While(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, |
| 397 | int col_offset, PyArena *arena); |
| 398 | #define If(a0, a1, a2, a3, a4, a5) _Py_If(a0, a1, a2, a3, a4, a5) |
| 399 | stmt_ty _Py_If(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, |
| 400 | int col_offset, PyArena *arena); |
| 401 | #define With(a0, a1, a2, a3, a4, a5) _Py_With(a0, a1, a2, a3, a4, a5) |
| 402 | stmt_ty _Py_With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, |
| 403 | int lineno, int col_offset, PyArena *arena); |
| 404 | #define Raise(a0, a1, a2, a3, a4, a5) _Py_Raise(a0, a1, a2, a3, a4, a5) |
| 405 | stmt_ty _Py_Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int |
| 406 | col_offset, PyArena *arena); |
| 407 | #define TryExcept(a0, a1, a2, a3, a4, a5) _Py_TryExcept(a0, a1, a2, a3, a4, a5) |
| 408 | stmt_ty _Py_TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, |
| 409 | int lineno, int col_offset, PyArena *arena); |
| 410 | #define TryFinally(a0, a1, a2, a3, a4) _Py_TryFinally(a0, a1, a2, a3, a4) |
| 411 | stmt_ty _Py_TryFinally(asdl_seq * body, asdl_seq * finalbody, int lineno, int |
| 412 | col_offset, PyArena *arena); |
| 413 | #define Assert(a0, a1, a2, a3, a4) _Py_Assert(a0, a1, a2, a3, a4) |
| 414 | stmt_ty _Py_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, |
| 415 | PyArena *arena); |
| 416 | #define Import(a0, a1, a2, a3) _Py_Import(a0, a1, a2, a3) |
| 417 | stmt_ty _Py_Import(asdl_seq * names, int lineno, int col_offset, PyArena |
| 418 | *arena); |
| 419 | #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5) |
| 420 | stmt_ty _Py_ImportFrom(identifier module, asdl_seq * names, int level, int |
| 421 | lineno, int col_offset, PyArena *arena); |
| 422 | #define Global(a0, a1, a2, a3) _Py_Global(a0, a1, a2, a3) |
| 423 | stmt_ty _Py_Global(asdl_seq * names, int lineno, int col_offset, PyArena |
| 424 | *arena); |
| 425 | #define Expr(a0, a1, a2, a3) _Py_Expr(a0, a1, a2, a3) |
| 426 | stmt_ty _Py_Expr(expr_ty value, int lineno, int col_offset, PyArena *arena); |
| 427 | #define Pass(a0, a1, a2) _Py_Pass(a0, a1, a2) |
| 428 | stmt_ty _Py_Pass(int lineno, int col_offset, PyArena *arena); |
| 429 | #define Break(a0, a1, a2) _Py_Break(a0, a1, a2) |
| 430 | stmt_ty _Py_Break(int lineno, int col_offset, PyArena *arena); |
| 431 | #define Continue(a0, a1, a2) _Py_Continue(a0, a1, a2) |
| 432 | stmt_ty _Py_Continue(int lineno, int col_offset, PyArena *arena); |
| 433 | #define BoolOp(a0, a1, a2, a3, a4) _Py_BoolOp(a0, a1, a2, a3, a4) |
| 434 | expr_ty _Py_BoolOp(boolop_ty op, asdl_seq * values, int lineno, int col_offset, |
| 435 | PyArena *arena); |
| 436 | #define BinOp(a0, a1, a2, a3, a4, a5) _Py_BinOp(a0, a1, a2, a3, a4, a5) |
| 437 | expr_ty _Py_BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int |
| 438 | col_offset, PyArena *arena); |
| 439 | #define UnaryOp(a0, a1, a2, a3, a4) _Py_UnaryOp(a0, a1, a2, a3, a4) |
| 440 | expr_ty _Py_UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset, |
| 441 | PyArena *arena); |
| 442 | #define Lambda(a0, a1, a2, a3, a4) _Py_Lambda(a0, a1, a2, a3, a4) |
| 443 | expr_ty _Py_Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset, |
| 444 | PyArena *arena); |
| 445 | #define IfExp(a0, a1, a2, a3, a4, a5) _Py_IfExp(a0, a1, a2, a3, a4, a5) |
| 446 | expr_ty _Py_IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int |
| 447 | col_offset, PyArena *arena); |
| 448 | #define Dict(a0, a1, a2, a3, a4) _Py_Dict(a0, a1, a2, a3, a4) |
| 449 | expr_ty _Py_Dict(asdl_seq * keys, asdl_seq * values, int lineno, int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 450 | col_offset, PyArena *arena); |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 451 | #define Set(a0, a1, a2, a3) _Py_Set(a0, a1, a2, a3) |
| 452 | expr_ty _Py_Set(asdl_seq * elts, int lineno, int col_offset, PyArena *arena); |
| 453 | #define ListComp(a0, a1, a2, a3, a4) _Py_ListComp(a0, a1, a2, a3, a4) |
| 454 | expr_ty _Py_ListComp(expr_ty elt, asdl_seq * generators, int lineno, int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 455 | col_offset, PyArena *arena); |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 456 | #define GeneratorExp(a0, a1, a2, a3, a4) _Py_GeneratorExp(a0, a1, a2, a3, a4) |
| 457 | expr_ty _Py_GeneratorExp(expr_ty elt, asdl_seq * generators, int lineno, int |
| 458 | col_offset, PyArena *arena); |
| 459 | #define Yield(a0, a1, a2, a3) _Py_Yield(a0, a1, a2, a3) |
| 460 | expr_ty _Py_Yield(expr_ty value, int lineno, int col_offset, PyArena *arena); |
| 461 | #define Compare(a0, a1, a2, a3, a4, a5) _Py_Compare(a0, a1, a2, a3, a4, a5) |
| 462 | expr_ty _Py_Compare(expr_ty left, asdl_int_seq * ops, asdl_seq * comparators, |
| 463 | int lineno, int col_offset, PyArena *arena); |
| 464 | #define Call(a0, a1, a2, a3, a4, a5, a6, a7) _Py_Call(a0, a1, a2, a3, a4, a5, a6, a7) |
| 465 | expr_ty _Py_Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty |
| 466 | starargs, expr_ty kwargs, int lineno, int col_offset, PyArena |
| 467 | *arena); |
| 468 | #define Num(a0, a1, a2, a3) _Py_Num(a0, a1, a2, a3) |
| 469 | expr_ty _Py_Num(object n, int lineno, int col_offset, PyArena *arena); |
| 470 | #define Str(a0, a1, a2, a3) _Py_Str(a0, a1, a2, a3) |
| 471 | expr_ty _Py_Str(string s, int lineno, int col_offset, PyArena *arena); |
Thomas Wouters | 00e41de | 2007-02-23 19:56:57 +0000 | [diff] [blame^] | 472 | #define Bytes(a0, a1, a2, a3) _Py_Bytes(a0, a1, a2, a3) |
| 473 | expr_ty _Py_Bytes(string s, int lineno, int col_offset, PyArena *arena); |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 474 | #define Ellipsis(a0, a1, a2) _Py_Ellipsis(a0, a1, a2) |
| 475 | expr_ty _Py_Ellipsis(int lineno, int col_offset, PyArena *arena); |
| 476 | #define Attribute(a0, a1, a2, a3, a4, a5) _Py_Attribute(a0, a1, a2, a3, a4, a5) |
| 477 | expr_ty _Py_Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int |
| 478 | lineno, int col_offset, PyArena *arena); |
| 479 | #define Subscript(a0, a1, a2, a3, a4, a5) _Py_Subscript(a0, a1, a2, a3, a4, a5) |
| 480 | expr_ty _Py_Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int |
| 481 | lineno, int col_offset, PyArena *arena); |
| 482 | #define Name(a0, a1, a2, a3, a4) _Py_Name(a0, a1, a2, a3, a4) |
| 483 | expr_ty _Py_Name(identifier id, expr_context_ty ctx, int lineno, int |
| 484 | col_offset, PyArena *arena); |
| 485 | #define List(a0, a1, a2, a3, a4) _Py_List(a0, a1, a2, a3, a4) |
| 486 | expr_ty _Py_List(asdl_seq * elts, expr_context_ty ctx, int lineno, int |
| 487 | col_offset, PyArena *arena); |
| 488 | #define Tuple(a0, a1, a2, a3, a4) _Py_Tuple(a0, a1, a2, a3, a4) |
| 489 | expr_ty _Py_Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int |
| 490 | col_offset, PyArena *arena); |
| 491 | #define Slice(a0, a1, a2, a3) _Py_Slice(a0, a1, a2, a3) |
| 492 | slice_ty _Py_Slice(expr_ty lower, expr_ty upper, expr_ty step, PyArena *arena); |
| 493 | #define ExtSlice(a0, a1) _Py_ExtSlice(a0, a1) |
| 494 | slice_ty _Py_ExtSlice(asdl_seq * dims, PyArena *arena); |
| 495 | #define Index(a0, a1) _Py_Index(a0, a1) |
| 496 | slice_ty _Py_Index(expr_ty value, PyArena *arena); |
| 497 | #define comprehension(a0, a1, a2, a3) _Py_comprehension(a0, a1, a2, a3) |
| 498 | comprehension_ty _Py_comprehension(expr_ty target, expr_ty iter, asdl_seq * |
| 499 | ifs, PyArena *arena); |
| 500 | #define excepthandler(a0, a1, a2, a3, a4, a5) _Py_excepthandler(a0, a1, a2, a3, a4, a5) |
| 501 | excepthandler_ty _Py_excepthandler(expr_ty type, identifier name, asdl_seq * |
| 502 | body, int lineno, int col_offset, PyArena |
| 503 | *arena); |
| 504 | #define arguments(a0, a1, a2, a3, a4, a5, a6, a7, a8) _Py_arguments(a0, a1, a2, a3, a4, a5, a6, a7, a8) |
| 505 | arguments_ty _Py_arguments(asdl_seq * args, identifier vararg, expr_ty |
| 506 | varargannotation, asdl_seq * kwonlyargs, identifier |
| 507 | kwarg, expr_ty kwargannotation, asdl_seq * defaults, |
| 508 | asdl_seq * kw_defaults, PyArena *arena); |
| 509 | #define SimpleArg(a0, a1, a2) _Py_SimpleArg(a0, a1, a2) |
| 510 | arg_ty _Py_SimpleArg(identifier arg, expr_ty annotation, PyArena *arena); |
| 511 | #define NestedArgs(a0, a1) _Py_NestedArgs(a0, a1) |
| 512 | arg_ty _Py_NestedArgs(asdl_seq * args, PyArena *arena); |
| 513 | #define keyword(a0, a1, a2) _Py_keyword(a0, a1, a2) |
| 514 | keyword_ty _Py_keyword(identifier arg, expr_ty value, PyArena *arena); |
| 515 | #define alias(a0, a1, a2) _Py_alias(a0, a1, a2) |
| 516 | alias_ty _Py_alias(identifier name, identifier asname, PyArena *arena); |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 517 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 518 | PyObject* PyAST_mod2obj(mod_ty t); |