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

encukou webhook-mailer at python.org
Tue May 30 11:46:04 EDT 2023


https://github.com/python/cpython/commit/0656d23d82cd5b88e578a26c65dd4a64414c833b
commit: 0656d23d82cd5b88e578a26c65dd4a64414c833b
branch: main
author: Petr Viktorin <encukou at gmail.com>
committer: encukou <encukou at gmail.com>
date: 2023-05-30T17:45:56+02:00
summary:

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

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')



More information about the Python-checkins mailing list