Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update zlib from 3.12.6 and _ZlibDecompressor implementation #5476

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions Lib/test/support/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,10 @@ def requires_legacy_unicode_capi():

has_fork_support = hasattr(os, "fork") and not is_emscripten and not is_wasi

# From python 3.12.6
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am sorry to confuse you. Version was required for commit message, but this is also fine too

is_s390x = hasattr(os, 'uname') and os.uname().machine == 's390x'
skip_on_s390x = unittest.skipIf(is_s390x, 'skipped on s390x')

def requires_fork():
return unittest.skipUnless(has_fork_support, "requires working os.fork()")

Expand Down
Loading
Loading