Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation.

This commit is contained in:
Senthil Kumaran 2011-09-22 02:09:17 +08:00
parent e51c8dad1a
commit 17dac4c0e2
1 changed files with 0 additions and 2 deletions

View 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))`` |