Commit c2c89609 authored by Eli Bendersky's avatar Eli Bendersky

Issue #13365: correct an error in the documentation of str.expandtabs

parent 98d2c0ab
...@@ -1033,7 +1033,7 @@ functions based on regular expressions. ...@@ -1033,7 +1033,7 @@ functions based on regular expressions.
.. method:: str.expandtabs([tabsize]) .. method:: str.expandtabs([tabsize])
Return a copy of the string where all tab characters are replaced by one or Return a copy of the string where all tab characters are replaced by zero or
more spaces, depending on the current column and the given tab size. The more spaces, depending on the current column and the given tab size. The
column number is reset to zero after each newline occurring in the string. column number is reset to zero after each newline occurring in the string.
If *tabsize* is not given, a tab size of ``8`` characters is assumed. This If *tabsize* is not given, a tab size of ``8`` characters is assumed. This
......
...@@ -285,6 +285,7 @@ Mark Favas ...@@ -285,6 +285,7 @@ Mark Favas
Niels Ferguson Niels Ferguson
Sebastian Fernandez Sebastian Fernandez
Florian Festi Florian Festi
John Feuerstein
Vincent Fiack Vincent Fiack
Tomer Filiba Tomer Filiba
Jeffrey Finkelstein Jeffrey Finkelstein
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment