Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
file=stream
  • Loading branch information
hugovk committed Jan 14, 2025
commit 36eb18e1bcfdf4b6470ffb1013b883c235803d0b
6 changes: 2 additions & 4 deletions Lib/unittest/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ def __init__(self, stream, descriptions, verbosity, *, durations=None):
self.showAll = verbosity > 1
self.dots = verbosity == 1
self.descriptions = descriptions
file = sys.stderr if stream == "<stderr>" else None
self._ansi = get_colors(file=file)
self._ansi = get_colors(file=stream)
self._newline = True
self.durations = durations

Expand Down Expand Up @@ -287,8 +286,7 @@ def run(self, test):
expected_fails, unexpected_successes, skipped = results

infos = []
file = sys.stderr if self.stream == "<stderr>" else None
ansi = get_colors(file=file)
ansi = get_colors(file=self.stream)
bold_red = ansi.BOLD_RED
green = ansi.GREEN
red = ansi.RED
Expand Down