commit | 96bc04369ad20123e4764c7abb86769feabf64a2 | [log] [tgz] |
---|---|---|
author | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Dec 05 15:06:23 2012 +0200 |
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Dec 05 15:06:23 2012 +0200 |
tree | 08b088a5abed0bf9494bed55dcd7ae924596b88d | |
parent | 539ee5da6fb2a56869e6c6f4401300b4d5906d76 [diff] |
Skip pdb test for #13120 if threading is not available.
diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index dc2609e..8355e7d 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py
@@ -668,6 +668,9 @@ # invoking "continue" on a non-main thread triggered an exception # inside signal.signal + # raises SkipTest if python was built without threads + support.import_module('threading') + with open(support.TESTFN, 'wb') as f: f.write(textwrap.dedent(""" import threading