[Python-checkins] r87162 - python/branches/release27-maint/Doc/library/stdtypes.rst

raymond.hettinger python-checkins at python.org
Sat Dec 11 01:41:02 CET 2010


Author: raymond.hettinger
Date: Sat Dec 11 01:41:02 2010
New Revision: 87162

Log:
Issue 2690:  Doc fixup.  xrange() objects are slicable.


Modified:
   python/branches/release27-maint/Doc/library/stdtypes.rst

Modified: python/branches/release27-maint/Doc/library/stdtypes.rst
==============================================================================
--- python/branches/release27-maint/Doc/library/stdtypes.rst	(original)
+++ python/branches/release27-maint/Doc/library/stdtypes.rst	Sat Dec 11 01:41:02 2010
@@ -699,7 +699,7 @@
 
 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``


More information about the Python-checkins mailing list