Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
gzip: add tests for memoryview with itemsize > 1 byte#141208
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Conversation
…ly round-trips through GzipFile and gzip.compress -> gzip.decompress
python-cla-botbot commentedNov 7, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Most changes to Pythonrequire a NEWS entry. Add one using theblurb_it web app or theblurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
Most changes to Pythonrequire a NEWS entry. Add one using theblurb_it web app or theblurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
dstndstn commentedNov 7, 2025
My attempt at filing a bug against Python3.12 was closed with |
…n into add-gzip-test-memoryview
Most changes to Pythonrequire a NEWS entry. Add one using theblurb_it web app or theblurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
dstndstn commentedNov 7, 2025
the macOS CI failure looks unrelated (ssl). |
This PR adds tests to
test_gzip.pythat an array with items larger than one byte correctly round-trips through GzipFile and gzip.compress -> gzip.decompress.Python 3.12 broke this; these tests are to try to make sure that doesn't happen again.