[3.12] gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms (GH-105092) (GH-105133)

https://github.com/python/cpython/commit/4729100239ce5486fce0ff4d62dad52c30e... commit: 4729100239ce5486fce0ff4d62dad52c30e108c3 branch: 3.12 author: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> committer: encukou <encukou@gmail.com> date: 2023-05-31T07:48:28Z summary: [3.12] gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms (GH-105092) (GH-105133) gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms (GH-105092) (cherry picked from commit 0656d23d82cd5b88e578a26c65dd4a64414c833b) Co-authored-by: Petr Viktorin <encukou@gmail.com> files: M Tools/build/stable_abi.py diff --git a/Tools/build/stable_abi.py b/Tools/build/stable_abi.py index 88db93e935e9..42b2dd92307b 100644 --- a/Tools/build/stable_abi.py +++ b/Tools/build/stable_abi.py @@ -684,7 +684,8 @@ def main(): if args.all: run_all_generators = True - args.unixy_check = True + if UNIXY: + args.unixy_check = True try: file = args.file.open('rb')
participants (1)
-
encukou