[issue35516] platform.system_alias(): add macOS support

2018-12-18 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35516] platform.system_alias(): add macOS support

2018-12-18 Thread STINNER Victor
STINNER Victor added the comment: New changeset 60875db2f67815d7d181c552bfac59e8c97619e3 by Victor Stinner in branch 'master': bpo-35516: platform.system_alias() don't replace Darwin (GH-11207) https://github.com/python/cpython/commit/60875db2f67815d7d181c552bfac59e8c97619e3 --

[issue35516] platform.system_alias(): add macOS support

2018-12-18 Thread STINNER Victor
STINNER Victor added the comment: Ronald Oussoren: > The patch does not use the version information passed in to calculate the > marketing version. That's a problem when passing in low-level information > from a system running a different version of macOS (for example passing in > the

[issue35516] platform.system_alias(): add macOS support

2018-12-18 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +10444 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35516] platform.system_alias(): add macOS support

2018-12-17 Thread STINNER Victor
STINNER Victor added the comment: > The patch does not use the version information passed in to calculate the > marketing version. That's a problem when passing in low-level information > from a system running a different version of macOS (for example passing in > the low-level version

[issue35516] platform.system_alias(): add macOS support

2018-12-17 Thread Ronald Oussoren
Ronald Oussoren added the comment: The patch does not use the version information passed in to calculate the marketing version. That's a problem when passing in low-level information from a system running a different version of macOS (for example passing in the low-level version information

[issue35516] platform.system_alias(): add macOS support

2018-12-17 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +10425 stage: -> patch review ___ Python tracker ___ ___

[issue35516] platform.system_alias(): add macOS support

2018-12-17 Thread STINNER Victor
STINNER Victor added the comment: > than the platform.mac_ver() change made in bpo-35344 Oops, this issue changed platform.platform() (not platform.mac_ver()). -- ___ Python tracker

[issue35516] platform.system_alias(): add macOS support

2018-12-17 Thread STINNER Victor
New submission from STINNER Victor : platform.system_alias() documentation: Returns ``(system, release, version)`` aliased to common marketing names used for some systems. It also does some reordering of the information in some cases where it would otherwise cause confusion. IMHO