Issue 13753: str.join description contains an incorrect reference to argument (original) (raw)

Created on 2012-01-10 03:52 by py.user, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (4)
msg150999 - (view) Author: py.user (py.user) * Date: 2012-01-10 03:52
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"
msg151043 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2012-01-11 08:42
See #13754 for commits (not here because 'close' != 'closes' or closed')
msg151193 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2012-01-13 20:45
You put '*' instead of '#' in the commit message. Also, I don't think you should close more than one issue in one commit.
msg151202 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2012-01-13 22:19
I see the two as really one issue -- minor corrections to the string section of stdtype.rst -- that py.user happened to have filed as two. But I could have left out the closes and done at least one explicitly. Or I could have closed this and said I was consolidating with #13754. Thanks for pointing out the typo.
History
Date User Action Args
2022-04-11 14:57:25 admin set github: 57962
2012-01-13 22:19:18 terry.reedy set messages: +
2012-01-13 20:45:46 georg.brandl set nosy: + georg.brandlmessages: +
2012-01-11 08:42:18 terry.reedy set status: open -> closedresolution: fixedmessages: +
2012-01-11 08:08:24 terry.reedy set versions: - Python 2.7
2012-01-11 08:00:47 terry.reedy set keywords: + patch, easyassignee: docs@python -> terry.reedynosy: + terry.reedyversions: + Python 2.7, Python 3.3
2012-01-10 03:52:41 py.user create