Lines Matching defs:list
1434 Return a list of the sections in the bytearray, using sep as the delimiter.
1444 PyObject *list;
1458 list = stringlib_split(
1462 return list;
1543 Return a list of the sections in the bytearray, using sep as the delimiter.
1555 PyObject *list;
1569 list = stringlib_rsplit(
1573 return list;
2019 Return a list of the lines in the bytearray, breaking at line boundaries.
2021 Line breaks are not included in the resulting list unless keepends is given and
2392 "Private method returning an estimate of len(list(it)).");