Lines Matching defs:list
1725 Return a list of the sections in the bytes, using sep as the delimiter.
1735 PyObject *list;
1746 list = stringlib_split((PyObject*) self, s, len, sub, n, maxsplit);
1748 return list;
1808 Return a list of the sections in the bytes, using sep as the delimiter.
1820 PyObject *list;
1831 list = stringlib_rsplit((PyObject*) self, s, len, sub, n, maxsplit);
1833 return list;
2338 Return a list of the lines in the bytes, breaking at line boundaries.
2340 Line breaks are not included in the resulting list unless keepends is given and
3185 "Private method returning an estimate of len(list(it)).");