[issue13365] str.expandtabs documentation is wrong

2011-11-11 Thread Eli Bendersky
Eli Bendersky added the comment: Committed. Thanks for contributing. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs

[issue13365] str.expandtabs documentation is wrong

2011-11-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 84f803fdc0d2 by Eli Bendersky in branch '3.2': Issue #13365: correct an error in the documentation of str.expandtabs http://hg.python.org/cpython/rev/84f803fdc0d2 New changeset 25191fe10da9 by Eli Bendersky in branch 'default': Issue #13365: correc

[issue13365] str.expandtabs documentation is wrong

2011-11-07 Thread Eli Bendersky
Eli Bendersky added the comment: Other than that, the patch looks good. -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue13365] str.expandtabs documentation is wrong

2011-11-07 Thread Eli Bendersky
Eli Bendersky added the comment: While we're at it, wouldn't it be clearer to say "... where each tab character is replaced by..."? -- nosy: +eli.bendersky ___ Python tracker _

[issue13365] str.expandtabs documentation is wrong

2011-11-07 Thread John Feuerstein
New submission from John Feuerstein : The documentation for str.expandtabs([tabsize]) is wrong: "Return a copy of the string where all tab characters are replaced by one or more spaces, depending on the current column and the given tab size. [...]" This should read "zero or more spaces": >>>