summaryrefslogtreecommitdiff
path: root/Doc/library/zipfile.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-12-19 09:28:12 +0200
committerGitHub <noreply@github.com>2018-12-19 09:28:12 +0200
commit1e47fbcf78c4d66fbe1fc7b4ea91a6b147ff83d2 (patch)
tree90a389ab0e2896639085014bb372b6b1996e19d4 /Doc/library/zipfile.rst
parentc74e7c48ba4f8437d4c8b402098b8cefc33a28a9 (diff)
downloadcpython-git-1e47fbcf78c4d66fbe1fc7b4ea91a6b147ff83d2.tar.gz
[3.7] bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174). (GH-11232)
(cherry picked from commit 2b57c43f21f891df4c6f2294a3b9e1b9029a16b6)
Diffstat (limited to 'Doc/library/zipfile.rst')
-rw-r--r--Doc/library/zipfile.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst
index e1f8b9a4a3..6fb03a0e31 100644
--- a/Doc/library/zipfile.rst
+++ b/Doc/library/zipfile.rst
@@ -175,7 +175,7 @@ ZipFile Objects
ZipFile is also a context manager and therefore supports the
:keyword:`with` statement. In the example, *myzip* is closed after the
- :keyword:`with` statement's suite is finished---even if an exception occurs::
+ :keyword:`!with` statement's suite is finished---even if an exception occurs::
with ZipFile('spam.zip', 'w') as myzip:
myzip.write('eggs.txt')