From: Daniel Stutzbach Date: Fri, 17 Dec 2010 21:20:55 +0000 (+0000) Subject: Revert doc patch committed to the wrong branch: "Issue 2690: Doc fixup. xrange... X-Git-Tag: v2.7.2rc1~465 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa7017f5f5d995ff25d1927edb75190b3bd381dc;p=python Revert doc patch committed to the wrong branch: "Issue 2690: Doc fixup. xrange() objects are slicable." --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index a0aee04c7f..2c47ebe2a9 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``