mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
Patch #574867: Correct list.extend docstring.
This commit is contained in:
parent
0cec0ffc78
commit
673c0a2247
1 changed files with 1 additions and 1 deletions
|
|
@ -1631,7 +1631,7 @@ list_nohash(PyObject *self)
|
|||
PyDoc_STRVAR(append_doc,
|
||||
"L.append(object) -- append object to end");
|
||||
PyDoc_STRVAR(extend_doc,
|
||||
"L.extend(list) -- extend list by appending list elements");
|
||||
"L.extend(sequence) -- extend list by appending sequence elements");
|
||||
PyDoc_STRVAR(insert_doc,
|
||||
"L.insert(index, object) -- insert object before index");
|
||||
PyDoc_STRVAR(pop_doc,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue