]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms (GH...
authorPetr Viktorin <encukou@gmail.com>
Tue, 30 May 2023 15:45:56 +0000 (17:45 +0200)
committerGitHub <noreply@github.com>
Tue, 30 May 2023 15:45:56 +0000 (17:45 +0200)
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')