8000 gh-132983: Minor fixes and clean up for the _zstd module by serhiy-storchaka · Pull Request #134930 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-132983: Minor fixes and clean up for the _zstd module #134930

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 9 commits into from
Jun 1, 2025
Prev Previous commit
Next Next commit
Update Modules/_zstd/_zstdmodule.c
Co-authored-by: Emma Smith <emma@emmatyping.dev>
  • Loading branch information
serhiy-storchaka and emmatyping authored Jun 1, 2025
commit b15f2e4c4eaeba6eb335dbc0334969b95e0fa841
2 changes: 1 addition & 1 deletion Modules/_zstd/_zstdmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ _Py_parse_zstd_dict(const _zstd_state *state, PyObject *dict, int *ptype)

/* Wrong type */
PyErr_SetString(PyExc_TypeError,
"zstd_dict argument should be ZstdDict object.");
"zstd_dict argument should be a ZstdDict object.");
return NULL;
}

Expand Down
Loading
0