Commit 16cd2bea authored by Mark Dickinson's avatar Mark Dickinson

Fix incorrect use of a list as the target of an 'except' clause in test_decimal.py.

parent 1b7f9e53
......@@ -40,7 +40,7 @@ except ImportError:
threading = None
# Useful Test Constant
Signals = getcontext().flags.keys()
Signals = tuple(getcontext().flags.keys())
# Tests are built around these assumed context defaults.
# test_main() restores the original context.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment