summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-12-17 20:53:03 (GMT)
committerDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-12-17 20:53:03 (GMT)
commit2a1e3e67b38863a9f282aadcdb52fe2ed87ef4ca (patch)
treec72f35a54f2ee3b1216bc770375f61a3ef44d687 /Doc/library
parent910a4edbcd05b0652309d2855a5d714f1403e05b (diff)
downloadcpython-2a1e3e67b38863a9f282aadcdb52fe2ed87ef4ca.zip
cpython-2a1e3e67b38863a9f282aadcdb52fe2ed87ef4ca.tar.gz
cpython-2a1e3e67b38863a9f282aadcdb52fe2ed87ef4ca.tar.bz2
Issue2690: Update docs to reflect the change made by issue2690.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/stdtypes.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 0bac956..4b9f816 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -836,8 +836,8 @@ the enclosing parentheses, such as ``a, b, c`` or ``()``. A single item tuple
must have a trailing comma, such as ``(d,)``.
Objects of type range are created using the :func:`range` function. They don't
-support slicing, concatenation or repetition, and using ``in``, ``not in``,
-:func:`min` or :func:`max` on them is inefficient.
+support concatenation or repetition, and using :func:`min` or :func:`max` on
+them is inefficient.
Most sequence types support the following operations. The ``in`` and ``not in``
operations have the same priorities as the comparison operations. The ``+`` and