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

This commit is contained in:
Mark Dickinson 2010-05-01 11:46:20 +00:00
parent 1b7f9e53b3
commit 16cd2bea1d

View file

@ -40,7 +40,7 @@ except ImportError:
threading = None threading = None
# Useful Test Constant # Useful Test Constant
Signals = getcontext().flags.keys() Signals = tuple(getcontext().flags.keys())
# Tests are built around these assumed context defaults. # Tests are built around these assumed context defaults.
# test_main() restores the original context. # test_main() restores the original context.