[Python-checkins] cpython (3.2): Fix closes issue13005 - Remove the mention of 'repeat' method in the operator

senthil.kumaran python-checkins at python.org
Wed Sep 21 20:10:24 CEST 2011


http://hg.python.org/cpython/rev/0d0bfbaaf95c
changeset:   72445:0d0bfbaaf95c
branch:      3.2
parent:      72442:6e04d406bb86
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Thu Sep 22 02:09:17 2011 +0800
summary:
  Fix closes issue13005 - Remove the mention of 'repeat' method in the operator module documentation.

files:
  Doc/library/operator.rst |  2 --
  1 files changed, 0 insertions(+), 2 deletions(-)


diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -378,8 +378,6 @@
 +-----------------------+-------------------------+---------------------------------------+
 | 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))``         |

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list