From 16cd2bea1d13fcf1efde25d2f339fa70e72fffb6 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sat, 1 May 2010 11:46:20 +0000 Subject: [PATCH] Fix incorrect use of a list as the target of an 'except' clause in test_decimal.py. --- Lib/test/test_decimal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index c3b12b0ac8..9f3d104e5d 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -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. -- 2.40.0