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