You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
# Bug is not putting parens around (x, y)
def bug(self, nested, a, b):
with self.assertRaises(ZeroDivisionError):
with nested(a(), b()) as (x, y):
1 // 0
when decompiled omits the parenthesis in as (x, y) and apparently this is needed.
when decompiled omits the parenthesis in
as (x, y)
and apparently this is needed.rocky/python-uncompyle6@37b8e21
suggests what can be done here and in Issue #24
The text was updated successfully, but these errors were encountered: