HomeSort by relevance Sort by last modified time
    Searched refs:AsyncWith (Results 1 - 5 of 5) sorted by null

  /external/python/cpython3/Include/
Python-ast.h 161 } AsyncWith;
491 #define AsyncWith(a0, a1, a2, a3, a4) _Py_AsyncWith(a0, a1, a2, a3, a4)
  /external/python/cpython3/Python/
ast.c 440 if (!validate_nonempty_seq(stmt->v.AsyncWith.items, "items", "AsyncWith"))
442 for (i = 0; i < asdl_seq_LEN(stmt->v.AsyncWith.items); i++) {
443 withitem_ty item = asdl_seq_GET(stmt->v.AsyncWith.items, i);
448 return validate_body(stmt->v.AsyncWith.body, "AsyncWith");
    [all...]
symtable.c     [all...]
compile.c     [all...]
Python-ast.c 898 AsyncWith_type = make_type("AsyncWith", stmt_type, AsyncWith_fields, 2);
    [all...]

Completed in 291 milliseconds