summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-12-17 21:20:55 (GMT)
committerDaniel Stutzbach <daniel@stutzbachenterprises.com>2010-12-17 21:20:55 (GMT)
commitaa7017f5f5d995ff25d1927edb75190b3bd381dc (patch)
tree202e89aa2ec51a4a30e1b11dfd62a2ffba9723e5 /Doc/library
parent47900cfa73ee35313f019d1efdfd1b8e8e0b76f8 (diff)
downloadcpython-aa7017f5f5d995ff25d1927edb75190b3bd381dc.zip
cpython-aa7017f5f5d995ff25d1927edb75190b3bd381dc.tar.gz
cpython-aa7017f5f5d995ff25d1927edb75190b3bd381dc.tar.bz2
Revert doc patch committed to the wrong branch: "Issue 2690: Doc fixup. xrange() objects are slicable."
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index a0aee04..2c47ebe 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -699,7 +699,7 @@ concatenation or repetition.
Objects of type xrange are similar to buffers in that there is no specific syntax to
create them, but they are created using the :func:`xrange` function. They don't
-support concatenation or repetition, and using ``in``, ``not in``,
+support slicing, concatenation or repetition, and using ``in``, ``not in``,
:func:`min` or :func:`max` on them is inefficient.
Most sequence types support the following operations. The ``in`` and ``not in``