[docs] [issue13753] str.join description contains an incorrect reference to argument

py.user report at bugs.python.org
Tue Jan 10 04:52:41 CET 2012


New submission from py.user <port139 at yandex.ru>:

http://docs.python.org/py3k/library/stdtypes.html#str.join

str.join(iterable)¶

    Return a string which is the concatenation of the strings in the iterable iterable. A TypeError will be raised if there are any non-string values in seq, including bytes objects. The separator between elements is the string providing this method.


"non-string values in seq" -> "non-string values in iterable"

----------
assignee: docs at python
components: Documentation
messages: 150999
nosy: docs at python, py.user
priority: normal
severity: normal
status: open
title: str.join description contains an incorrect reference to argument
versions: Python 3.2

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13753>
_______________________________________


More information about the docs mailing list