diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-04-28 22:58:02 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-04-28 22:58:02 (GMT) |
commit | a171979a19b46194f2926522073622d64d7a8fc6 (patch) | |
tree | 1df13fb4c79811e87f18a780d98091b83531db69 /Tools | |
parent | 6999441d62cfc6a6273b0e9e3df2cce0ef3f05fa (diff) | |
download | cpython-a171979a19b46194f2926522073622d64d7a8fc6.zip cpython-a171979a19b46194f2926522073622d64d7a8fc6.tar.gz cpython-a171979a19b46194f2926522073622d64d7a8fc6.tar.bz2 |
Remove a workaround for fixed issue #20355.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/scripts/run_tests.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Tools/scripts/run_tests.py b/Tools/scripts/run_tests.py index a6c5da3..490a37e 100644 --- a/Tools/scripts/run_tests.py +++ b/Tools/scripts/run_tests.py @@ -33,8 +33,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 #20355 - os.environ.pop("PYTHONWARNINGS", None) # Workaround for issue #20361 args.extend(['-W', 'error::BytesWarning']) |