Remove gratuitous unicode character.

This commit is contained in:
Georg Brandl 2007-12-16 15:53:49 +00:00
parent 05df69b2ea
commit 459744cc71
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ Notes:
(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