From: Mark Dickinson Date: Sat, 1 May 2010 11:56:48 +0000 (+0000) Subject: Merged revisions 80681 via svnmerge from X-Git-Tag: v2.6.6rc1~375 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=813f11815728501b27447a9429ea5b42ba005d37;p=python Merged revisions 80681 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80681 | mark.dickinson | 2010-05-01 12:46:20 +0100 (Sat, 01 May 2010) | 2 lines Fix incorrect use of a list as the target of an 'except' clause in test_decimal.py. ........ --- diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index b78041b3fb..b176f57fa3 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.