summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-06-26 19:00:11 (GMT)
committerGeorg Brandl <georg@python.org>2008-06-26 19:00:11 (GMT)
commit85f7604dc438bc98c531384cd670a74b66ae89be (patch)
tree2ceb318b260cc4e47eafa84b2741c286ba3da0fc /Doc
parentd61438a939c0d3aea558419519cf39a60c85788b (diff)
downloadcpython-85f7604dc438bc98c531384cd670a74b66ae89be.zip
cpython-85f7604dc438bc98c531384cd670a74b66ae89be.tar.gz
cpython-85f7604dc438bc98c531384cd670a74b66ae89be.tar.bz2
#3204: remove slice operations from operator doc.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/operator.rst24
1 files changed, 0 insertions, 24 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index a0a767b..37996e0 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -210,24 +210,12 @@ Operations which work with sequences include:
Remove the value of *a* at index *b*.
-.. function:: delslice(a, b, c)
- __delslice__(a, b, c)
-
- Delete the slice of *a* from index *b* to index *c-1*.
-
-
.. function:: getitem(a, b)
__getitem__(a, b)
Return the value of *a* at index *b*.
-.. function:: getslice(a, b, c)
- __getslice__(a, b, c)
-
- Return the slice of *a* from index *b* to index *c-1*.
-
-
.. function:: indexOf(a, b)
Return the index of the first of occurrence of *b* in *a*.
@@ -245,12 +233,6 @@ Operations which work with sequences include:
Set the value of *a* at index *b* to *c*.
-.. function:: setslice(a, b, c, v)
- __setslice__(a, b, c, v)
-
- Set the slice of *a* from index *b* to index *c-1* to the sequence *v*.
-
-
Many operations have an "in-place" version. The following functions provide a
more primitive access to in-place operators than the usual syntax does; for
example, the :term:`statement` ``x += y`` is equivalent to
@@ -533,12 +515,6 @@ Python syntax and the functions in the :mod:`operator` module.
+-----------------------+-------------------------+---------------------------------+
| Sequence Repitition | ``seq * i`` | ``repeat(seq, i)`` |
+-----------------------+-------------------------+---------------------------------+
-| Slice Assignment | ``seq[i:j] = values`` | ``setslice(seq, i, j, values)`` |
-+-----------------------+-------------------------+---------------------------------+
-| Slice Deletion | ``del seq[i:j]`` | ``delslice(seq, i, j)`` |
-+-----------------------+-------------------------+---------------------------------+
-| Slicing | ``seq[i:j]`` | ``getslice(seq, i, j)`` |
-+-----------------------+-------------------------+---------------------------------+
| String Formatting | ``s % obj`` | ``mod(s, obj)`` |
+-----------------------+-------------------------+---------------------------------+
| Subtraction | ``a - b`` | ``sub(a, b)`` |