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