]> granicus.if.org Git - python/commitdiff
Issue2690: Update docs to reflect the change made by issue2690.
authorDaniel Stutzbach <daniel@stutzbachenterprises.com>
Fri, 17 Dec 2010 20:53:03 +0000 (20:53 +0000)
committerDaniel Stutzbach <daniel@stutzbachenterprises.com>
Fri, 17 Dec 2010 20:53:03 +0000 (20:53 +0000)
Doc/library/stdtypes.rst

index 0bac95664a454c418dcc7e7a63a6253140218521..4b9f8164bb8b5bb9633d7a20136b77aaba595d06 100644 (file)
@@ -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