Commit 60875db2 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-35516: platform.system_alias() don't replace Darwin (GH-11207)

Add a comment explaining why system_alias() doesn't alias Darwin to
macOS.
parent 17d0c059
......@@ -514,6 +514,9 @@ def system_alias(system, release, version):
# In case one of the other tricks
system = 'Windows'
# bpo-35516: Don't replace Darwin with macOS since input release and
# version arguments can be different than the currently running version.
return system, release, version
### Various internal helpers
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment