From 5f76602fb093944c557743075fee220b7389f33a Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 11 Dec 2010 00:41:02 +0000 Subject: [PATCH] Issue 2690: Doc fixup. xrange() objects are slicable. --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index decb12da147..31f00b6396f 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``