diff options
author | Christian Heimes <christian@python.org> | 2022-03-22 09:37:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 09:37:00 (GMT) |
commit | 4f97d64c831c94660ceb01f34d51fa236ad968b0 (patch) | |
tree | ad8b4e06cddb3112553a98679f3a6b4be6e34606 /Misc | |
parent | 3751b6b030b4a3b88959b4f3c4ef2e58d325e497 (diff) | |
download | cpython-4f97d64c831c94660ceb01f34d51fa236ad968b0.zip cpython-4f97d64c831c94660ceb01f34d51fa236ad968b0.tar.gz cpython-4f97d64c831c94660ceb01f34d51fa236ad968b0.tar.bz2 |
bpo-45150: Add hashlib.file_digest() for efficient file hashing (GH-31930)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-03-16-11-52-52.bpo-45150.kYbIME.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-03-16-11-52-52.bpo-45150.kYbIME.rst b/Misc/NEWS.d/next/Library/2022-03-16-11-52-52.bpo-45150.kYbIME.rst new file mode 100644 index 0000000..1c6ea5a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-03-16-11-52-52.bpo-45150.kYbIME.rst @@ -0,0 +1 @@ +Add :func:`hashlib.file_digest` helper for efficient hashing of file object. |