8000 gh-135004: rewrite and cleanup `blake2module.c` by picnixz · Pull Request #135006 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-135004: rewrite and cleanup blake2module.c #135006

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 14 commits into from
Jun 9, 2025
Merged
Prev Previous commit
Next Next commit
update module docstring
  • Loading branch information
picnixz committed Jun 5, 2025
commit ecd8f1968c8a7c7e54a9d2d9fa82e68cd6b13868
3 changes: 1 addition & 2 deletions Modules/blake2module.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ static PyType_Spec blake2b_type_spec;
static PyType_Spec blake2s_type_spec;

PyDoc_STRVAR(blake2mod__doc__,
"_blake2b provides BLAKE2b for hashlib\n"
);
"_blake2 provides BLAKE2b and BLAKE2s for hashlib\n");

typedef struct {
PyTypeObject *blake2b_type;
Expand Down
0