From: Senthil Kumaran Date: Wed, 21 Sep 2011 18:09:17 +0000 (+0800) Subject: Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module... X-Git-Tag: v3.3.0a1~1505^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17dac4c0e27116d4f7681bc0cb01ac6036b97932;p=python Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation. --- diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 1dc0e144d2..51cd55f274 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))`` |