Commit 8962f003 authored by Guido van Rossum's avatar Guido van Rossum

Document the default for tabsize in expandtabs().

parent d9aaca8e
......@@ -102,12 +102,12 @@ The functions defined in this module are:
trailing whitespace.
\end{funcdesc}
\begin{funcdesc}{expandtabs}{s, tabsize}
\begin{funcdesc}{expandtabs}{s, \optional{tabsize}}
Expand tabs in a string, i.e.\ replace them by one or 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.
This doesn't understand other non-printing characters or escape
sequences.
sequences. The tab size defaults to 8.
\end{funcdesc}
\begin{funcdesc}{find}{s, sub\optional{, start\optional{,end}}}
......
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