8000 gh-128595: Default to stdout isatty for colour detection instead of stderr by hugovk · Pull Request #128498 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-128595: Default to stdout isatty for colour detection instead of stderr #128498

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Jan 20, 2025
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
0