diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-06-17 18:28:02 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-06-17 18:28:02 (GMT) |
commit | 4a704d2341649d7d994e55ffae4e3a3a9c1e6391 (patch) | |
tree | 9b3ea3c1d075d4b5b1da16632cd1ab6957847387 /Lib | |
parent | 9ce4f36aa1e901cd6d61209b37d18602d1e27cc7 (diff) | |
parent | 4de701b7280128a1c9a1a9d2cd5d5601ecf5129f (diff) | |
download | cpython-4a704d2341649d7d994e55ffae4e3a3a9c1e6391.zip cpython-4a704d2341649d7d994e55ffae4e3a3a9c1e6391.tar.gz cpython-4a704d2341649d7d994e55ffae4e3a3a9c1e6391.tar.bz2 |
(Merge 3.3) regrtest.py: Fix typo in the usage of the faulthandler module
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/test/regrtest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index b3ba33f..a8ff652 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -536,13 +536,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...") @@ -972,7 +972,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: |