summaryrefslogtreecommitdiff
path: root/Lib/test/regrtest.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-08-12 02:12:30 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-08-12 02:12:30 +0000
commit421c1319adec1bc0f2c822f1055f79a2f0cf3b58 (patch)
treece4a92245a71e5d1e180a5d349f7a8296905189a /Lib/test/regrtest.py
parent6b4953fd3d3d1df06f692af67f593d3d0a7aef26 (diff)
downloadcpython-git-421c1319adec1bc0f2c822f1055f79a2f0cf3b58.tar.gz
Whoops, how did that get in there. :-) Revert all the parts of 51227 that were not supposed to go it. Only Modules/_ctypes/cfields.c was supposed to be changed
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-xLib/test/regrtest.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 8c416f1c43..4553838afc 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -123,7 +123,6 @@ option '-uall,-bsddb'.
import os
import sys
-import signal
import getopt
import random
import warnings
@@ -290,12 +289,6 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, generate=False,
if single and fromfile:
usage(2, "-s and -f don't go together!")
- def handle_signal(*args):
- raise RuntimeError('signal received %s' % args)
-
- # Provide a traceback if we are terminated.
- signal.signal(signal.SIGTERM, handle_signal)
-
good = []
bad = []
skipped = []