mirror of https://github.com/python/cpython
gh-108915: Removes extra backslashes in str.split docstring (#109044)
This commit is contained in:
parent
fd5989bda1
commit
e7d5433f94
|
@ -950,7 +950,7 @@ PyDoc_STRVAR(unicode_split__doc__,
|
||||||
" The separator used to split the string.\n"
|
" The separator used to split the string.\n"
|
||||||
"\n"
|
"\n"
|
||||||
" When set to None (the default value), will split on any whitespace\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"
|
" empty strings from the result.\n"
|
||||||
" maxsplit\n"
|
" maxsplit\n"
|
||||||
" Maximum number of splits (starting from the left).\n"
|
" Maximum number of splits (starting from the left).\n"
|
||||||
|
@ -1074,7 +1074,7 @@ PyDoc_STRVAR(unicode_rsplit__doc__,
|
||||||
" The separator used to split the string.\n"
|
" The separator used to split the string.\n"
|
||||||
"\n"
|
"\n"
|
||||||
" When set to None (the default value), will split on any whitespace\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"
|
" empty strings from the result.\n"
|
||||||
" maxsplit\n"
|
" maxsplit\n"
|
||||||
" Maximum number of splits (starting from the left).\n"
|
" Maximum number of splits (starting from the left).\n"
|
||||||
|
@ -1504,4 +1504,4 @@ skip_optional_pos:
|
||||||
exit:
|
exit:
|
||||||
return return_value;
|
return return_value;
|
||||||
}
|
}
|
||||||
/*[clinic end generated code: output=8d08dfbb814c4393 input=a9049054013a1b77]*/
|
/*[clinic end generated code: output=4acdcfdc93f2a0f6 input=a9049054013a1b77]*/
|
||||||
|
|
|
@ -12402,7 +12402,7 @@ str.split as unicode_split
|
||||||
The separator used to split the string.
|
The separator used to split the string.
|
||||||
|
|
||||||
When set to None (the default value), will split on any whitespace
|
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.
|
empty strings from the result.
|
||||||
maxsplit: Py_ssize_t = -1
|
maxsplit: Py_ssize_t = -1
|
||||||
Maximum number of splits (starting from the left).
|
Maximum number of splits (starting from the left).
|
||||||
|
@ -12418,7 +12418,7 @@ the regular expression module.
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
unicode_split_impl(PyObject *self, PyObject *sep, Py_ssize_t maxsplit)
|
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)
|
if (sep == Py_None)
|
||||||
return split(self, NULL, maxsplit);
|
return split(self, NULL, maxsplit);
|
||||||
|
|
Loading…
Reference in New Issue