Typo in a code example.

This commit is contained in:
Armin Rigo 2005-12-06 18:32:37 +00:00
parent de5f05f3b1
commit 5ed262b7de
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ the \function{int} function where the \var{base} argument defaults to
two:
\begin{verbatim}
>>> basetwo = partial(int, base=2)
>>> basetwo.__doc__('Convert base 2 string to an int.')
>>> basetwo.__doc__ = 'Convert base 2 string to an int.'
>>> basetwo('10010')
18
\end{verbatim}