From: Victor Stinner Date: Mon, 17 Jun 2013 18:27:10 +0000 (+0200) Subject: regrtest.py: Fix typo in the usage of the faulthandler module X-Git-Tag: v3.4.0a1~462^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4de701b7280128a1c9a1a9d2cd5d5601ecf5129f;p=python regrtest.py: Fix typo in the usage of the faulthandler module --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 636282ebed..7086c7c776 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -454,13 +454,13 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, # join it with the saved CWD so it ends up where the user expects. testdir = os.path.join(support.SAVEDCWD, a) elif o == '--timeout': - if hasattr(faulthandler, 'dump_tracebacks_later'): + if hasattr(faulthandler, 'dump_traceback_later'): timeout = float(a) if timeout <= 0: timeout = None else: print("Warning: The timeout option requires " - "faulthandler.dump_tracebacks_later") + "faulthandler.dump_traceback_later") timeout = None elif o == '--wait': input("Press any key to continue...") @@ -904,7 +904,7 @@ def runtest(test, verbose, quiet, support.use_resources = use_resources use_timeout = (timeout is not None) if use_timeout: - faulthandler.dump_tracebacks_later(timeout, exit=True) + faulthandler.dump_traceback_later(timeout, exit=True) try: support.match_tests = match_tests if failfast: