diff -r 4aed1bd755c0 Doc/library/stdtypes.rst --- Doc/library/stdtypes.rst Mon Oct 12 03:26:07 2009 +0200 +++ Doc/library/stdtypes.rst Mon Oct 12 17:42:34 2009 -0500 @@ -996,10 +996,11 @@ For 8-bit strings, this method is locale-dependent. -.. method:: str.join(seq) +.. method:: str.join(itrb) - Return a string which is the concatenation of the strings in the sequence *seq*. - The separator between elements is the string providing this method. + Return a string which is the concatenation of the strings in the + :term:`iterable` *itrb*. The separator between elements is the string + providing this method. .. method:: str.ljust(width[, fillchar]) diff -r 4aed1bd755c0 Objects/stringobject.c --- Objects/stringobject.c Mon Oct 12 03:26:07 2009 +0200 +++ Objects/stringobject.c Mon Oct 12 17:42:34 2009 -0500 @@ -1814,10 +1814,10 @@ 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 -r 4aed1bd755c0 Objects/unicodeobject.c --- Objects/unicodeobject.c Mon Oct 12 03:26:07 2009 +0200 +++ Objects/unicodeobject.c Mon Oct 12 17:42:34 2009 -0500 @@ -7154,10 +7154,10 @@ } 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)