Preserve empty lines between try clause headers (#6759)

This commit is contained in:
Micha Reiser 2023-08-22 11:50:28 +02:00 committed by GitHub
parent ba4c27598a
commit fec6fc2fab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 64 additions and 4 deletions

View file

@ -146,3 +146,23 @@ except (
# comment
):
pass
try:
pass
finally:
pass
try:
pass
except ZeroDivisonError:
pass
else:
pass
finally:
pass