diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-30 20:58:13 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-30 20:58:13 (GMT) |
commit | d976098e3bb53b9c52d55a303e1389a102ed8bae (patch) | |
tree | f7cf8a917aa8af9d6e844dbfda59beab1404249c /Lib | |
parent | e15dce3d18d333b91a567fb8d611ca74781e4f13 (diff) | |
download | cpython-d976098e3bb53b9c52d55a303e1389a102ed8bae.zip cpython-d976098e3bb53b9c52d55a303e1389a102ed8bae.tar.gz cpython-d976098e3bb53b9c52d55a303e1389a102ed8bae.tar.bz2 |
Close #12089: Remove outdated and unused code from regrtest.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/test/regrtest.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index b5e5127..29e8648 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -1023,10 +1023,6 @@ class saved_test_environment: def runtest_inner(test, verbose, quiet, huntrleaks=False, debug=False): support.unload(test) - if verbose: - capture_stdout = None - else: - capture_stdout = io.StringIO() test_time = 0.0 refleak = False # True if the test leaked references. |