[Python-checkins] r59528 - python/trunk/Doc/library/stdtypes.rst

georg.brandl python-checkins at python.org
Sun Dec 16 16:53:49 CET 2007


Author: georg.brandl
Date: Sun Dec 16 16:53:49 2007
New Revision: 59528

Modified:
   python/trunk/Doc/library/stdtypes.rst
Log:
Remove gratuitous unicode character.


Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst	(original)
+++ python/trunk/Doc/library/stdtypes.rst	Sun Dec 16 16:53:49 2007
@@ -632,7 +632,7 @@
 
 (5)
    The slice of *s* from *i* to *j* with step *k* is defined as the sequence of
-   items with index  ``x = i + n*k`` such that 0 ≤n < (j-i)/(k).  In other words,
+   items with index  ``x = i + n*k`` such that ``0 <= n < (j-i)/k``.  In other words,
    the indices are ``i``, ``i+k``, ``i+2*k``, ``i+3*k`` and so on, stopping when
    *j* is reached (but never including *j*).  If *i* or *j* is greater than
    ``len(s)``, use ``len(s)``.  If *i* or *j* are omitted or ``None``, they become


More information about the Python-checkins mailing list