[Python-checkins] cpython (merge 3.2 -> default): merge 3.2. Fix closes issue13005 - Remove the mention of 'repeat' method in
senthil.kumaran
python-checkins at python.org
Wed Sep 21 20:10:24 CEST 2011
http://hg.python.org/cpython/rev/6c60f2aacc83
changeset: 72446:6c60f2aacc83
parent: 72444:573d73e62bbc
parent: 72445:0d0bfbaaf95c
user: Senthil Kumaran <senthil at uthcode.com>
date: Thu Sep 22 02:10:09 2011 +0800
summary:
merge 3.2. 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