From 7db2c1a74beda06a46f18e438409cf1e34368407 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sat, 13 Aug 2022 21:00:58 +0200 Subject: [PATCH] gh-89313: Add hashlib.file_digest to whatsnew 3.11 (GH-95965) Automerge-Triggered-By: GH:pablogsal (cherry picked from commit 0b329f4f03b3e2d603cf81c39e7c9d83da123717) Co-authored-by: Christian Heimes --- Doc/whatsnew/3.11.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 6c8f7913a346dc..99cf77dadb5695 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -592,6 +592,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 ----------------