(original) (raw)

changeset: 80730:4cb84c0fbee2 parent: 80727:e771edf43149 parent: 80729:328a8824c1a7 user: Andrew Svetlov andrew.svetlov@gmail.com date: Wed Dec 05 15:07:10 2012 +0200 description: Merge: skip pdb test for #13120 if threading is not available. diff -r e771edf43149 -r 4cb84c0fbee2 Lib/test/test_pdb.py --- a/Lib/test/test_pdb.py Wed Dec 05 11:12:50 2012 +0200 +++ b/Lib/test/test_pdb.py Wed Dec 05 15:07:10 2012 +0200 @@ -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 /andrew.svetlov@gmail.com