summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-09-21 18:10:09 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-09-21 18:10:09 (GMT)
commit85579b8f0e6e506f4995098ac0ee1d96e9960ed9 (patch)
tree1608e553006301d62d43b61a38a3d85fbb124938 /Doc
parent472d280d8b9c3663f4e7a2a79b459c3c34825a72 (diff)
parent17dac4c0e27116d4f7681bc0cb01ac6036b97932 (diff)
downloadcpython-85579b8f0e6e506f4995098ac0ee1d96e9960ed9.zip
cpython-85579b8f0e6e506f4995098ac0ee1d96e9960ed9.tar.gz
cpython-85579b8f0e6e506f4995098ac0ee1d96e9960ed9.tar.bz2
merge 3.2. Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/operator.rst2
1 files changed, 0 insertions, 2 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index 1dc0e14..51cd55f 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -378,8 +378,6 @@ Python syntax and the functions in the :mod:`operator` module.
+-----------------------+-------------------------+---------------------------------------+
| Right Shift | ``a >> b`` | ``rshift(a, b)`` |
+-----------------------+-------------------------+---------------------------------------+
-| Sequence Repetition | ``seq * i`` | ``repeat(seq, i)`` |
-+-----------------------+-------------------------+---------------------------------------+
| Slice Assignment | ``seq[i:j] = values`` | ``setitem(seq, slice(i, j), values)`` |
+-----------------------+-------------------------+---------------------------------------+
| Slice Deletion | ``del seq[i:j]`` | ``delitem(seq, slice(i, j))`` |