Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 17dac4c

Browse files
committed
Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation.
1 parent e51c8da commit 17dac4c

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

Doc/library/operator.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,6 @@ Python syntax and the functions in the :mod:`operator` module.
378378
+-----------------------+-------------------------+---------------------------------------+
379379
| Right Shift | ``a >> b`` | ``rshift(a, b)`` |
380380
+-----------------------+-------------------------+---------------------------------------+
381-
| Sequence Repetition | ``seq * i`` | ``repeat(seq, i)`` |
382-
+-----------------------+-------------------------+---------------------------------------+
383381
| Slice Assignment | ``seq[i:j] = values`` | ``setitem(seq, slice(i, j), values)`` |
384382
+-----------------------+-------------------------+---------------------------------------+
385383
| Slice Deletion | ``del seq[i:j]`` | ``delitem(seq, slice(i, j))`` |

0 commit comments

Comments
 (0)