commit | f0eb7adc7f912641741716e46141ea0f09225194 | [log] [tgz] |
---|---|---|
author | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Dec 05 15:06:54 2012 +0200 |
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | Wed Dec 05 15:06:54 2012 +0200 |
tree | cd9d5503e2be650b8d305955fd7c5051f843118f | |
parent | 73a5a12dcf4258c6973383b31dc6cbb8d36d75f1 [diff] | |
parent | 96bc04369ad20123e4764c7abb86769feabf64a2 [diff] |
Merge: 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 4e543dd..4fb07a3 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py
@@ -671,6 +671,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