Lines Matching defs:start
13 [clinic start generated code]*/
32 start: object = 0
36 The enumerate object yields pairs containing a count (from start, which
41 [clinic start generated code]*/
44 enum_new_impl(PyTypeObject *type, PyObject *iterable, PyObject *start)
52 if (start != NULL) {
53 start = PyNumber_Index(start);
54 if (start == NULL) {
58 assert(PyLong_Check(start));
59 en->en_index = PyLong_AsSsize_t(start);
63 en->en_longindex = start;
66 Py_DECREF(start);
110 // Manually implement enumerate(iterable, start=...)
113 if (!check_keyword(kwnames, 0, "start")) {
118 if (_PyUnicode_EqualToASCIIString(kw0, "start")) {
125 !check_keyword(kwnames, 1, "start")) {
350 [clinic start generated code]*/