Home | History | Annotate | Download | only in Python

Lines Matching defs:ilow

1811     PyObject *ilow = NULL;
1830 if (!PyArg_UnpackTuple(args, "range", 1, 3, &ilow, &ihigh, &istep)) {
1837 * are correct. NB: ilow, ihigh and istep are borrowed references.
1839 assert(ilow != NULL);
1842 ihigh = ilow;
1843 ilow = NULL;
1852 /* ihigh correct now; do ilow */
1853 if (ilow == NULL) {
1858 low = get_range_long_argument(ilow, "start");
1863 /* ilow and ihigh correct now; do istep */
1968 long ilow = 0, ihigh = 0, istep = 1;
1985 &ilow, &ihigh, &istep)) {
1996 bign = get_len_of_range(ilow, ihigh, istep);
1998 bign = get_len_of_range(ihigh, ilow, -istep);
2009 PyObject *w = PyInt_FromLong(ilow);
2015 ilow += istep;