diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2018-01-23 12:30:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-23 12:30:53 (GMT) |
commit | dc6b9462c00873c8404a7966b7ca210717718af5 (patch) | |
tree | 020e7c859f6aa9b069023ec0f3636d5a1e2ae656 /Tools/scripts | |
parent | 872f841b122160987845db8fdddfaee1aaa203f1 (diff) | |
download | cpython-dc6b9462c00873c8404a7966b7ca210717718af5.zip cpython-dc6b9462c00873c8404a7966b7ca210717718af5.tar.gz cpython-dc6b9462c00873c8404a7966b7ca210717718af5.tar.bz2 |
bpo-20361: Remove workaround for a now fixed bug (#5283)
"python3 -bb -Wd" now works as expected:
"python3 -bb -Wd -Werror::BytesWarning" is no more needed.
Diffstat (limited to 'Tools/scripts')
-rw-r--r-- | Tools/scripts/run_tests.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Tools/scripts/run_tests.py b/Tools/scripts/run_tests.py index 9fc3799..3c1c3bd 100644 --- a/Tools/scripts/run_tests.py +++ b/Tools/scripts/run_tests.py @@ -30,9 +30,6 @@ def main(regrtest_args): # Allow user-specified interpreter options to override our defaults. args.extend(test.support.args_from_interpreter_flags()) - # Workaround for issue #20361 - args.extend(['-W', 'error::BytesWarning']) - args.extend(['-m', 'test', # Run the test suite '-r', # Randomize test order '-w', # Re-run failed tests in verbose mode |