diff options
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r-- | Lib/decimal.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py index 49f8115..967f101 100644 --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -2196,8 +2196,6 @@ class ContextManager(object): return self.new_context def __exit__(self, t, v, tb): setcontext(self.saved_context) - if t is not None: - raise t, v, tb class Context(object): """Contains the context for a Decimal instance. |