diff options
author | Christian Heimes <christian@python.org> | 2022-08-13 19:00:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-13 19:00:58 (GMT) |
commit | 0b329f4f03b3e2d603cf81c39e7c9d83da123717 (patch) | |
tree | 85b2f075238c1f298ccbe479652cffad662cbdad /Doc/whatsnew/3.11.rst | |
parent | 7552f237a262b9b593df012fdf2ddaa0d914a1e9 (diff) | |
download | cpython-0b329f4f03b3e2d603cf81c39e7c9d83da123717.zip cpython-0b329f4f03b3e2d603cf81c39e7c9d83da123717.tar.gz cpython-0b329f4f03b3e2d603cf81c39e7c9d83da123717.tar.bz2 |
gh-89313: Add hashlib.file_digest to whatsnew 3.11 (GH-95965)
Automerge-Triggered-By: GH:pablogsal
Diffstat (limited to 'Doc/whatsnew/3.11.rst')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 7be9a50..f1f0230 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -609,6 +609,10 @@ hashlib OpenSSL support. (Contributed by Christian Heimes in :issue:`47098`.) +* Add :func:`hashlib.file_digest`, a helper function for efficient hashing + of files or file-like objects. + (Contributed by Christian Heimes in :gh:`89313`.) + IDLE and idlelib ---------------- |