Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-105091: stable_abi.py: Remove "Unixy" check from --all on other pl…
…atforms (GH-105092)

(cherry picked from commit 0656d23)

Co-authored-by: Petr Viktorin <[email protected]>
  • Loading branch information
encukou authored and miss-islington committed May 31, 2023
commit 56ec4a784af6fcb19cda72ddbc3780c08d006702
3 changes: 2 additions & 1 deletion Tools/build/stable_abi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down