-
-
Notifications
You must be signed in to change notification settings - Fork 32k
gh-132983: Make _zstd C code PEP 7 compliant #134605
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
Conversation
Thanks @emmatyping for the PR, and @gpshead for merging it 🌮🎉.. I'm working now to backport this PR to: 3.14. |
Make _zstd C code PEP 7 compliant (cherry picked from commit 973b8f6) Co-authored-by: Emma Smith <emma@emmatyping.dev>
GH-134609 is a backport of this pull request to the 3.14 branch. |
|
Hm, that buildbot failure looks unrelated I think. |
Mostly just making sure things are under 80 characters and fixing a few incorrectly placed left braces. I also removed
const
from instances of_zstd_state* const mod_state
since a) it was making some lines go over 80 characters b) it is unnecessary and c) it better matches the CPython style.This is the final todo left in #132983 🎉