summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2017-11-11 14:55:05 (GMT)
committerGitHub <noreply@github.com>2017-11-11 14:55:05 (GMT)
commit7c9da3e5ba060463b661da58ec3fe6beedce5566 (patch)
tree0368a3e8a40abeb14d9ec0b7b079dc06e2d65bcb /Doc/reference
parentbba2239c17a404fc99524bfbf8126c9b3b7fb343 (diff)
downloadcpython-7c9da3e5ba060463b661da58ec3fe6beedce5566.zip
cpython-7c9da3e5ba060463b661da58ec3fe6beedce5566.tar.gz
cpython-7c9da3e5ba060463b661da58ec3fe6beedce5566.tar.bz2
Remove redundant 'exc = True' line (GH-4357)
It can be removed after https://github.com/python/peps/commit/c28890fb421c906241da6da718f9eacc5a3109ee
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/compound_stmts.rst1
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst
index 4b425a4..dca9362 100644
--- a/Doc/reference/compound_stmts.rst
+++ b/Doc/reference/compound_stmts.rst
@@ -773,7 +773,6 @@ Is semantically equivalent to::
mgr = (EXPR)
aexit = type(mgr).__aexit__
aenter = type(mgr).__aenter__(mgr)
- exc = True
VAR = await aenter
try: