diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-05-31 07:48:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 07:48:28 (GMT) |
commit | 4729100239ce5486fce0ff4d62dad52c30e108c3 (patch) | |
tree | 99eefc56a22baa89f6fb74bd2ea71e3c464548d9 | |
parent | e3fcd9e4fa34f087985f0ab958c6effa20bf071e (diff) | |
download | cpython-4729100239ce5486fce0ff4d62dad52c30e108c3.zip cpython-4729100239ce5486fce0ff4d62dad52c30e108c3.tar.gz cpython-4729100239ce5486fce0ff4d62dad52c30e108c3.tar.bz2 |
[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>
-rw-r--r-- | Tools/build/stable_abi.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/build/stable_abi.py b/Tools/build/stable_abi.py index 88db93e..42b2dd9 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') |