diff options
author | Raymond Hettinger <python@rcn.com> | 2005-02-09 23:23:10 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-02-09 23:23:10 (GMT) |
commit | 5c44cb37d65cf9eeeaed1794373f0cd8823065da (patch) | |
tree | 69cba37e8875d6f8282662023bb0f7c999e6d9e3 /Doc/lib | |
parent | 1a37c4c6b10000e3f7685add1747bb1629908ed7 (diff) | |
download | cpython-5c44cb37d65cf9eeeaed1794373f0cd8823065da.zip cpython-5c44cb37d65cf9eeeaed1794373f0cd8823065da.tar.gz cpython-5c44cb37d65cf9eeeaed1794373f0cd8823065da.tar.bz2 |
SF bug #1119700: list extend() accepts args besides lists
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libstdtypes.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 6355731..c464517 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -1075,7 +1075,7 @@ Notes: no longer works in Python 2.0. Use of this misfeature has been deprecated since Python 1.4. -\item[(3)] Raises an exception when \var{x} is not a list object. +\item[(3)] \var{x} can be any iterable object. \item[(4)] Raises \exception{ValueError} when \var{x} is not found in \var{s}. When a negative index is passed as the second or third parameter |