SF 810242. Fix doubled word errors.

This commit is contained in:
Raymond Hettinger 2003-09-22 15:00:55 +00:00
parent e46d14cd2c
commit 7e43110f34
7 changed files with 7 additions and 7 deletions

View file

@ -975,7 +975,7 @@ class C(B):
container that supports iteration, or an iterator object.
If \var{sequence} is already a tuple, it
is returned unchanged. For instance, \code{tuple('abc')} returns
returns \code{('a', 'b', 'c')} and \code{tuple([1, 2, 3])} returns
\code{('a', 'b', 'c')} and \code{tuple([1, 2, 3])} returns
\code{(1, 2, 3)}. If no argument is given, returns a new empty
tuple, \code{()}.
\end{funcdesc}