diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-11-11 15:11:34 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-11-11 15:11:34 (GMT) |
commit | 98ad985afe452438dcccd19583071008b7afe691 (patch) | |
tree | aeb6e50e349e6742647b3dd80d13e3318d9f14ac /Doc/reference | |
parent | 7abbddd88d4debe75b201145b6212afb7d93c457 (diff) | |
download | cpython-98ad985afe452438dcccd19583071008b7afe691.zip cpython-98ad985afe452438dcccd19583071008b7afe691.tar.gz cpython-98ad985afe452438dcccd19583071008b7afe691.tar.bz2 |
Remove redundant 'exc = True' line (GH-4357)
It can be removed after https://github.com/python/peps/commit/c28890fb421c906241da6da718f9eacc5a3109ee
(cherry picked from commit 7c9da3e5ba060463b661da58ec3fe6beedce5566)
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/compound_stmts.rst | 1 |
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: |