Lines Matching refs:split
921 #include "stringlib/split.h"
930 #include "stringlib/split.h"
940 #include "stringlib/split.h"
950 #include "stringlib/split.h"
10360 split(PyObject *self,
13152 return split(s, sep, maxsplit);
13156 str.split as unicode_split
13159 The separator used to split the string.
13161 When set to None (the default value), will split on any whitespace
13170 Note, str.split() is mainly useful for data that has been intentionally
13181 return split(self, NULL, maxsplit);
13183 return split(self, sep, maxsplit);
13347 str.rsplit as unicode_rsplit = str.split
16172 METH_O, PyDoc_STR("split the argument as a field name")},