Searched refs:ExtSlice (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Parser/ |
D | Python.asdl | 89 | ExtSlice(slice* dims)
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 327 } ExtSlice; member 515 #define ExtSlice(a0, a1) _Py_ExtSlice(a0, a1) macro
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a5.rst | 862 ``Index`` and ``ExtSlice`` are considered deprecated and will be removed in 864 ``value`` itself, ``ExtSlice(slices)`` returns ``Tuple(slices, Load())``.
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 731 "ExtSlice"
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.9.rst | 915 * :mod:`ast` classes ``slice``, ``Index`` and ``ExtSlice`` are considered deprecated 918 used instead of ``ExtSlice(slices)``. 1098 ``Index(value)`` will return a ``value`` itself, ``ExtSlice(slices)``
|
/external/python/cpython2/Python/ |
D | symtable.c | 1473 VISIT_SEQ(st, slice, s->v.ExtSlice.dims) in symtable_visit_slice()
|
D | Python-ast.c | 2010 ExtSlice(asdl_seq * dims, PyArena *arena) in ExtSlice() function 2017 p->v.ExtSlice.dims = dims; in ExtSlice() 2996 value = ast2obj_list(o->v.ExtSlice.dims, ast2obj_slice); in ast2obj_slice() 6088 *out = ExtSlice(dims, arena); in obj2ast_slice()
|
D | compile.c | 3371 int i, n = asdl_seq_LEN(s->v.ExtSlice.dims); in compiler_visit_slice() 3374 s->v.ExtSlice.dims, i); in compiler_visit_slice()
|
D | ast.c | 1705 return Subscript(left_expr, ExtSlice(slices, c->c_arena), in ast_for_trailer()
|
/external/python/cpython3/Lib/ |
D | ast.py | 603 class ExtSlice(slice): class
|
/external/python/cpython3/Doc/library/ |
D | ast.rst | 138 Old classes :class:`ast.Index` and :class:`ast.ExtSlice` are still
|