Fix test suite to not activate new sigint behavior in pdb.

This commit is contained in:
Georg Brandl 2010-12-04 17:11:36 +00:00
parent f3fa5685e8
commit 34748cd6a8
3 changed files with 19 additions and 15 deletions

View file

@ -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)