Lines Matching defs:step
248 Py_CLEAR(state->step);
346 if ((state->step = PyUnicode_InternFromString("step")) == NULL) return 0;
635 "step",
1337 " | Slice(expr? lower, expr? upper, expr? step)");
1459 "Slice(expr? lower, expr? upper, expr? step)");
1465 if (PyObject_SetAttr(state->Slice_type, state->step, Py_None) == -1)
3241 _PyAST_Slice(expr_ty lower, expr_ty upper, expr_ty step, int lineno, int
3251 p->v.Slice.step = step;
4696 value = ast2obj_expr(state, o->v.Slice.step);
4698 if (PyObject_SetAttr(result, state->step, value) == -1)
9837 expr_ty step;
9873 if (_PyObject_LookupAttr(obj, state->step, &tmp) < 0) {
9878 step = NULL;
9885 res = obj2ast_expr(state, tmp, &step, arena);
9890 *out = _PyAST_Slice(lower, upper, step, lineno, col_offset, end_lineno,