no longer works in Python 2.0. Use of this misfeature has been
deprecated since Python 1.4.
-\item[(2)] Raises an exception when \var{x} is not a list object. The
- \method{extend()} method is experimental and not supported by
- mutable sequence types other than lists.
+\item[(2)] Raises an exception when \var{x} is not an iterable object.
\item[(3)] Raises \exception{ValueError} when \var{x} is not found in
\var{s}.
static char append_doc[] =
"L.append(object) -- append object to end";
static char extend_doc[] =
-"L.extend(list) -- extend list by appending list elements";
+"L.extend(iterable) -- extend list by appending elements from the iterable";
static char insert_doc[] =
"L.insert(index, object) -- insert object before index";
static char pop_doc[] =