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

2012-01-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: 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 consolid

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

2012-01-13 Thread Georg Brandl
Georg Brandl added the comment: You put '*' instead of '#' in the commit message. Also, I don't think you should close more than one issue in one commit. -- nosy: +georg.brandl ___ Python tracker

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

2012-01-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: See #13754 for commits (not here because 'close' != 'closes' or closed') -- resolution: -> fixed status: open -> closed ___ Python tracker ___

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

2012-01-11 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

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

2012-01-11 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: docs@python -> terry.reedy keywords: +easy, patch nosy: +terry.reedy versions: +Python 2.7, Python 3.3 ___ Python tracker ___ ___

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

2012-01-09 Thread py.user
New submission from py.user : 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. T