summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-12-11 00:41:02 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-12-11 00:41:02 (GMT)
commit5f76602fb093944c557743075fee220b7389f33a (patch)
treefe099910578b9faac5e6b4b827862e0e5d6ba0dd /Doc/library
parent54d3921c015a9422fffa54ee847217e6bfa0aef7 (diff)
downloadcpython-5f76602fb093944c557743075fee220b7389f33a.zip
cpython-5f76602fb093944c557743075fee220b7389f33a.tar.gz
cpython-5f76602fb093944c557743075fee220b7389f33a.tar.bz2
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 decb12d..31f00b6 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 slicing, concatenation or repetition, and using ``in``, ``not in``,
+support 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``