File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222
2323- Issue #20743: Fix a reference leak in test_tcl.
2424
25+ Tools/Demos
26+ -----------
27+
28+ - Issue #20535: PYTHONWARNING no longer affects the run_tests.py script.
29+ Patch by Arfrever Frehtes Taifersar Arahesis.
30+
2531
2632What's New in Python 3.4.0 release candidate 2?
2733===============================================
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