]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 31 May 2023 07:48:28 +0000 (00:48 -0700)
committerGitHub <noreply@github.com>
Wed, 31 May 2023 07:48:28 +0000 (07:48 +0000)
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>
Tools/build/stable_abi.py

index 88db93e935e9be490ccfd4a02402caffc3627cc5..42b2dd92307bbf09fab7df4777f01072a234c3f0 100644 (file)
@@ -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')