Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Lib/test/test_regrtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,10 @@ def test_script_autotest(self):
self.run_tests(args)

def run_batch(self, *args):
proc = self.run_command(args)
proc = self.run_command(args,
# gh-133711: cmd.exe uses the OEM code page
# to display the non-ASCII current directory
errors="backslashreplace")
self.check_output(proc.stdout)

@unittest.skipUnless(sysconfig.is_python_build(),
Expand Down
Loading