mirror of https://github.com/python/cpython
merge 3.2. Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation.
This commit is contained in:
commit
85579b8f0e
|
@ -378,8 +378,6 @@ Python syntax and the functions in the :mod:`operator` module.
|
||||||
+-----------------------+-------------------------+---------------------------------------+
|
+-----------------------+-------------------------+---------------------------------------+
|
||||||
| Right Shift | ``a >> b`` | ``rshift(a, b)`` |
|
| 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 Assignment | ``seq[i:j] = values`` | ``setitem(seq, slice(i, j), values)`` |
|
||||||
+-----------------------+-------------------------+---------------------------------------+
|
+-----------------------+-------------------------+---------------------------------------+
|
||||||
| Slice Deletion | ``del seq[i:j]`` | ``delitem(seq, slice(i, j))`` |
|
| Slice Deletion | ``del seq[i:j]`` | ``delitem(seq, slice(i, j))`` |
|
||||||
|
|
Loading…
Reference in New Issue