summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
Diffstat (limited to 'Objects')
-rw-r--r--Objects/stringobject.c4
-rw-r--r--Objects/unicodeobject.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 2ae397a..ebf97b5 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -1806,10 +1806,10 @@ onError:
PyDoc_STRVAR(join__doc__,
-"S.join(sequence) -> string\n\
+"S.join(iterable) -> string\n\
\n\
Return a string which is the concatenation of the strings in the\n\
-sequence. The separator between elements is S.");
+iterable. The separator between elements is S.");
static PyObject *
string_join(PyStringObject *self, PyObject *orig)
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 3e5f9bc..55c781e 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -7036,10 +7036,10 @@ unicode_isnumeric(PyUnicodeObject *self)
}
PyDoc_STRVAR(join__doc__,
- "S.join(sequence) -> unicode\n\
+ "S.join(iterable) -> unicode\n\
\n\
Return a string which is the concatenation of the strings in the\n\
-sequence. The separator between elements is S.");
+iterable. The separator between elements is S.");
static PyObject*
unicode_join(PyObject *self, PyObject *data)