]> granicus.if.org Git - python/commitdiff
Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module...
authorSenthil Kumaran <senthil@uthcode.com>
Wed, 21 Sep 2011 18:09:17 +0000 (02:09 +0800)
committerSenthil Kumaran <senthil@uthcode.com>
Wed, 21 Sep 2011 18:09:17 +0000 (02:09 +0800)
Doc/library/operator.rst

index 1dc0e144d282b1f00681308065859fcb5dfd4ee6..51cd55f27442470cf571726872d89b418901d5d8 100644 (file)
@@ -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))``         |