diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-09-21 18:09:17 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-09-21 18:09:17 (GMT) |
commit | 17dac4c0e27116d4f7681bc0cb01ac6036b97932 (patch) | |
tree | 14f1f6ae7904c6f0ec81f6b5abaa06c640c93171 /Doc/library/operator.rst | |
parent | e51c8dad1a086d2d7cd2b343c625805fa7a856bd (diff) | |
download | cpython-17dac4c0e27116d4f7681bc0cb01ac6036b97932.zip cpython-17dac4c0e27116d4f7681bc0cb01ac6036b97932.tar.gz cpython-17dac4c0e27116d4f7681bc0cb01ac6036b97932.tar.bz2 |
Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation.
Diffstat (limited to 'Doc/library/operator.rst')
-rw-r--r-- | Doc/library/operator.rst | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 1dc0e14..51cd55f 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))`` | |