Lines Matching defs:separator

9533                               separator. They only go between
9547 /* if digits are not grouped, thousands separator
9582 /* Use a separator next time. */
10039 PyUnicode_Join(PyObject *separator, PyObject *seq)
10057 res = _PyUnicode_JoinArray(separator, items, seqlen);
10063 _PyUnicode_JoinArray(PyObject *separator, PyObject *const *items, Py_ssize_t seqlen)
10095 if (separator == NULL) {
10096 /* fall back to a blank space separator */
10104 if (!PyUnicode_Check(separator)) {
10106 "separator: expected str instance,"
10108 Py_TYPE(separator)->tp_name);
10111 if (PyUnicode_READY(separator))
10113 sep = separator;
10114 seplen = PyUnicode_GET_LENGTH(separator);
10115 maxchar = PyUnicode_MAX_CHAR_VALUE(separator);
10117 above case of a blank separator */
10185 /* Copy item, and maybe the separator. */
10209 /* Copy item, and maybe the separator. */
13159 The separator used to split the string.
13168 Return a list of the substrings in the string, using sep as the separator string.
13300 Partition the string into three parts using the given separator.
13302 This will search for the separator in the string. If the separator is found,
13303 returns a 3-tuple containing the part before the separator, the separator
13306 If the separator is not found, returns a 3-tuple containing the original string
13320 Partition the string into three parts using the given separator.
13322 This will search for the separator in the string, starting at the end. If
13323 the separator is found, returns a 3-tuple containing the part before the
13324 separator, the separator itself, and the part after it.
13326 If the separator is not found, returns a 3-tuple containing two empty strings
13349 Return a list of the substrings in the string, using sep as the separator string.