10000 gh-129061: Fix `FORCE_COLOR` and `NO_COLOR` when empty strings by hugovk · Pull Request #129140 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-129061: Fix FORCE_COLOR and NO_COLOR when empty strings #129140

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 8 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
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
Fix FORCE_COLOR and NO_COLOR when empty strings
  • Loading branch information
hugovk committed Jan 21, 2025
commit c7b541962e0ac6f3f84be3886a357cfa442b65e3
4 changes: 2 additions & 2 deletions Lib/_colorize.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ def can_colorize(*, file=None) -> bool:
return False
if os.environ.get("PYTHON_COLORS") == "1":
return True
if "NO_COLOR" in os.environ:
if os.environ.get("NO_COLOR"):
return False
if not COLORIZE:
return False
if "FORCE_COLOR" in os.environ:
if os.environ.get("FORCE_COLOR"):
return True
if os.environ.get("TERM") == "dumb":
return False
Expand Down
17 changes: 17 additions & 0 deletions Lib/test/test__colorize.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,34 @@ def test_colorized_detection_checks_for_environment_variables(self):
({"PYTHON_COLORS": "1"}, True),
({"PYTHON_COLORS": "0"}, False),
({"NO_COLOR": "1"}, False),
({"NO_COLOR": "0"}, False),
({"NO_COLOR": "1", "PYTHON_COLORS": "1"}, True),
({"FORCE_COLOR": "1"}, True),
({"FORCE_COLOR": "1", "NO_COLOR": "1"}, False),
({"FORCE_COLOR": "1", "NO_COLOR": "0"}, False),
({"FORCE_COLOR": "1", "NO_COLOR": ""}, True),
({"FORCE_COLOR": "0", "NO_COLOR": "1"}, False),
({"FORCE_COLOR": "", "NO_COLOR": "1"}, False),
({"FORCE_COLOR": "1", "PYTHON_COLORS": "0"}, False),
({"FORCE_COLOR": "0", "PYTHON_COLORS": "0"}, False),
]:
with self.subTest(env_vars=env_vars, expected=expected):
with unittest.mock.patch("os.environ", env_vars):
self.assertEqual(_colorize.can_colorize(), expected)

with unittest.mock.patch("os.environ", {"NO_COLOR": ""}):
if sys.platform == "win32":
vt_mock.return_value = False
self.assertEqual(_colorize.can_colorize(), False)

vt_mock.return_value = True
self.assertEqual(_colorize.can_colorize(), True)
else:
self.assertEqual(_colorize.can_colorize(), True)

with unittest.mock.patch("os.environ", {}):
if sys.platform == "win32":
vt_mock.return_value = False
self.assertEqual(_colorize.can_colorize(), False)

vt_mock.return_value = True
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix FORCE_COLOR and NO_COLOR when empty strings. Patch by Hugo van Kemenade.
Loading
0