summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 3fbc2d2..26aa139 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -12361,7 +12361,7 @@ str.split as unicode_split
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).
@@ -12377,7 +12377,7 @@ the regular expression module.
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);