From: Petr Viktorin Date: Tue, 30 May 2023 15:45:56 +0000 (+0200) Subject: gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms (GH... X-Git-Tag: v3.13.0a1~1976 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0656d23d82cd5b88e578a26c65dd4a64414c833b;p=thirdparty%2FPython%2Fcpython.git gh-105091: stable_abi.py: Remove "Unixy" check from --all on other platforms (GH-105092) --- 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')