diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 11:01:19 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 11:01:19 (GMT) |
commit | a12b68203381b349effba8d442af4a98a74fbb3e (patch) | |
tree | a5df9f670d58d4c4f227f2b0c23775b9e976b85a /Doc/tutorial | |
parent | 2070e83f28008e0110f3caf021e129ecb3b33558 (diff) | |
download | cpython-a12b68203381b349effba8d442af4a98a74fbb3e.zip cpython-a12b68203381b349effba8d442af4a98a74fbb3e.tar.gz cpython-a12b68203381b349effba8d442af4a98a74fbb3e.tar.bz2 |
Add missing list methods. Found by Leonardo Pereira on docs@.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/datastructures.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 53077e4..24d2d2e 100644 --- a/Doc/tutorial/datastructures.rst +++ b/Doc/tutorial/datastructures.rst @@ -54,6 +54,12 @@ objects: will see this notation frequently in the Python Library Reference.) +.. method:: list.clear() + :noindex: + + Remove all items from the list. Equivalent to ``del a[:]``. + + .. method:: list.index(x) :noindex: @@ -79,6 +85,12 @@ objects: Reverse the elements of the list in place. +.. method:: list.copy() + :noindex: + + Return a shallow copy of the list. Equivalent to ``a[:]``. + + An example that uses most of the list methods:: >>> a = [66.25, 333, 333, 1, 1234.5] |