File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -149,6 +149,12 @@ Build
149149- Issue #20609: Restored the ability to build 64-bit Windows binaries on
150150 32-bit Windows, which was broken by the change in issue #19788.
151151
152+ Tools/Demos
153+ -----------
154+
155+ - Issue #20535: PYTHONWARNING no longer affects the run_tests.py script.
156+ Patch by Arfrever Frehtes Taifersar Arahesis.
157+
152158
153159What's New in Python 3.3.4?
154160===========================
Original file line number Diff line number Diff line change @@ -32,6 +32,12 @@ def main(regrtest_args):
3232 ]
3333 # Allow user-specified interpreter options to override our defaults.
3434 args .extend (test .support .args_from_interpreter_flags ())
35+
36+ # Workaround for issue #20355
37+ os .environ .pop ("PYTHONWARNINGS" , None )
38+ # Workaround for issue #20361
39+ args .extend (['-W' , 'error::BytesWarning' ])
40+
3541 args .extend (['-m' , 'test' , # Run the test suite
3642 '-r' , # Randomize test order
3743 '-w' , # Re-run failed tests in verbose mode
You can’t perform that action at this time.
0 commit comments