summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-04-10 21:28:51 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2008-04-10 21:28:51 (GMT)
commit19baaadf5184ef0cc811918ef8c655d1baa1bea7 (patch)
treed6712fc2d6ea229fadf8247f41194dac3eb60fe0
parent3351e4142c386a4dc2fd03b693f78d101f66d1a6 (diff)
downloadcpython-19baaadf5184ef0cc811918ef8c655d1baa1bea7.zip
cpython-19baaadf5184ef0cc811918ef8c655d1baa1bea7.tar.gz
cpython-19baaadf5184ef0cc811918ef8c655d1baa1bea7.tar.bz2
Add punctuation
-rw-r--r--Doc/reference/expressions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index 8652453..299ff56 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -1315,7 +1315,7 @@ groups from right to left).
.. [#] In Python 2.3, a list comprehension "leaks" the control variables of each
``for`` it contains into the containing scope. However, this behavior is
deprecated, and relying on it will not work once this bug is fixed in a future
- release
+ release.
.. [#] While ``abs(x%y) < abs(y)`` is true mathematically, for floats it may not be
true numerically due to roundoff. For example, and assuming a platform on which