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.2.3rc1~555 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17dac4c0e27116d4f7681bc0cb01ac6036b97932;p=thirdparty%2FPython%2Fcpython.git 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 1dc0e144d282..51cd55f27442 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))`` |