diff options
author | Georg Brandl <georg@python.org> | 2010-12-04 17:11:36 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-04 17:11:36 (GMT) |
commit | 34748cd6a86a423d4c0fd65af0834c8cfbb1db40 (patch) | |
tree | e471441cb7f28df1fce97c3e4c1450745d54f335 /Lib/test/test_zipimport_support.py | |
parent | f3fa5685e85f7aa21c124bb6a71a076f80666f2c (diff) | |
download | cpython-34748cd6a86a423d4c0fd65af0834c8cfbb1db40.zip cpython-34748cd6a86a423d4c0fd65af0834c8cfbb1db40.tar.gz cpython-34748cd6a86a423d4c0fd65af0834c8cfbb1db40.tar.bz2 |
Fix test suite to not activate new sigint behavior in pdb.
Diffstat (limited to 'Lib/test/test_zipimport_support.py')
-rw-r--r-- | Lib/test/test_zipimport_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_zipimport_support.py b/Lib/test/test_zipimport_support.py index b996e26..b935b3f 100644 --- a/Lib/test/test_zipimport_support.py +++ b/Lib/test/test_zipimport_support.py @@ -200,7 +200,7 @@ class ZipSupportTests(ImportHooksBaseTestCase): pass import pdb - pdb.runcall(f) + pdb.Pdb(nosigint=True).runcall(f) """) with temp_dir() as d: script_name = make_script(d, 'script', test_src) |