summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-12-16 15:53:49 (GMT)
committerGeorg Brandl <georg@python.org>2007-12-16 15:53:49 (GMT)
commit459744cc71a8b91e229329dc3b9d8a77f68fd801 (patch)
tree8ba8aebcef4a161ff34460b29c92e07d56f43194 /Doc/library
parent05df69b2ea7e97235a2ba93e79d461d16e211f0a (diff)
downloadcpython-459744cc71a8b91e229329dc3b9d8a77f68fd801.zip
cpython-459744cc71a8b91e229329dc3b9d8a77f68fd801.tar.gz
cpython-459744cc71a8b91e229329dc3b9d8a77f68fd801.tar.bz2
Remove gratuitous unicode character.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 6b77d5b..f7363c3 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -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