From 17dac4c0e27116d4f7681bc0cb01ac6036b97932 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Thu, 22 Sep 2011 02:09:17 +0800 Subject: [PATCH] Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation. --- Doc/library/operator.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 1dc0e144d28..51cd55f2744 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))`` |