mirror of
https://github.com/python/cpython.git
synced 2025-11-25 12:44:13 +00:00
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. ........
This commit is contained in:
parent
fcfd25bd72
commit
813f118157
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue