summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_zipimport_support.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-12-04 17:11:36 (GMT)
committerGeorg Brandl <georg@python.org>2010-12-04 17:11:36 (GMT)
commit34748cd6a86a423d4c0fd65af0834c8cfbb1db40 (patch)
treee471441cb7f28df1fce97c3e4c1450745d54f335 /Lib/test/test_zipimport_support.py
parentf3fa5685e85f7aa21c124bb6a71a076f80666f2c (diff)
downloadcpython-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.py2
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)