" The separator used to split the string.\n"
"\n"
" When set to None (the default value), will split on any whitespace\n"
-" character (including \\\\n \\\\r \\\\t \\\\f and spaces) and will discard\n"
+" character (including \\n \\r \\t \\f and spaces) and will discard\n"
" empty strings from the result.\n"
" maxsplit\n"
" Maximum number of splits (starting from the left).\n"
" The separator used to split the string.\n"
"\n"
" When set to None (the default value), will split on any whitespace\n"
-" character (including \\\\n \\\\r \\\\t \\\\f and spaces) and will discard\n"
+" character (including \\n \\r \\t \\f and spaces) and will discard\n"
" empty strings from the result.\n"
" maxsplit\n"
" Maximum number of splits (starting from the left).\n"
exit:
return return_value;
}
-/*[clinic end generated code: output=05d942840635dadf input=a9049054013a1b77]*/
+/*[clinic end generated code: output=32edbbf75dc8a03b input=a9049054013a1b77]*/
The separator used to split the string.
When set to None (the default value), will split on any whitespace
- character (including \\n \\r \\t \\f and spaces) and will discard
+ character (including \n \r \t \f and spaces) and will discard
empty strings from the result.
maxsplit: Py_ssize_t = -1
Maximum number of splits (starting from the left).
static PyObject *
unicode_split_impl(PyObject *self, PyObject *sep, Py_ssize_t maxsplit)
-/*[clinic end generated code: output=3a65b1db356948dc input=906d953b44efc43b]*/
+/*[clinic end generated code: output=3a65b1db356948dc input=07b9040d98c5fe8d]*/
{
if (sep == Py_None)
return split(self, NULL, maxsplit);