summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/2.6.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2017-01-14 08:24:20 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2017-01-14 08:24:20 (GMT)
commit8f1378366e9fc0d7f22fda302f04bf822ae34cc1 (patch)
treef213d643e990d5763f33959a00fa8e5f0bcc731a /Doc/whatsnew/2.6.rst
parent536d70ed331c3192578b73b2b243bc1dbbd8ec2a (diff)
downloadcpython-8f1378366e9fc0d7f22fda302f04bf822ae34cc1.zip
cpython-8f1378366e9fc0d7f22fda302f04bf822ae34cc1.tar.gz
cpython-8f1378366e9fc0d7f22fda302f04bf822ae34cc1.tar.bz2
Avoid line breaks after hyphens, otherwise they are turned into spaces
Diffstat (limited to 'Doc/whatsnew/2.6.rst')
-rw-r--r--Doc/whatsnew/2.6.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst
index 4fc0c36..cc2fa3d 100644
--- a/Doc/whatsnew/2.6.rst
+++ b/Doc/whatsnew/2.6.rst
@@ -290,8 +290,8 @@ be used with the ':keyword:`with`' statement. File objects are one example::
... more processing code ...
After this statement has executed, the file object in *f* will have been
-automatically closed, even if the :keyword:`for` loop raised an exception part-
-way through the block.
+automatically closed, even if the :keyword:`for` loop raised an exception
+part-way through the block.
.. note::