Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
fix test_zlib
  • Loading branch information
arihant2math committed Apr 15, 2025
commit 662d3a1b4ad0e6a33f8cc52be9e8a420ae1b778f
3 changes: 2 additions & 1 deletion Lib/test/support/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2594,7 +2594,8 @@ def adjust_int_max_str_digits(max_digits):
# The default C recursion limit (from Include/cpython/pystate.h).
C_RECURSION_LIMIT = 1500

#Windows doesn't have os.uname() but it doesn't support s390x.
# Windows doesn't have os.uname() but it doesn't support s390x.
is_s390x = hasattr(os, 'uname') and os.uname().machine == 's390x'
skip_on_s390x = unittest.skipIf(hasattr(os, 'uname') and os.uname().machine == 's390x',
'skipped on s390x')
HAVE_ASAN_FORK_BUG = check_sanitizer(address=True)
Expand Down
Loading