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