8000 gh-87138: convert SHA-3 object type to heap type by picnixz · Pull Request #127670 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-87138: convert SHA-3 object type to heap type #127670

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 4 commits into from
Dec 8, 2024
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
remove cosmetics
  • Loading branch information
picnixz committed Dec 8, 2024
commit e23eeeeea99fc4e777508183b3270da4d89b3b35
2 changes: 1 addition & 1 deletion Modules/sha3module.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ static PyGetSetDef SHA3_getseters[] = {
{"_capacity_bits", (getter)SHA3_get_capacity_bits, NULL, NULL, NULL},
{"_rate_bits", (getter)SHA3_get_rate_bits, NULL, NULL, NULL},
{"_suffix", (getter)SHA3_get_suffix, NULL, NULL, NULL},
{NULL, NULL, NULL, NULL, NULL} /* Sentinel */
{NULL} /* Sentinel */
};

#define SHA3_TYPE_SLOTS(type_slots_obj, type_doc, type_methods, type_getseters) \
Expand Down
Loading
0