Kaydet (Commit) 813f1181 authored tarafından Mark Dickinson's avatar Mark Dickinson

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.
........
üst fcfd25bd
...@@ -40,7 +40,7 @@ except ImportError: ...@@ -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.
......
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