From e6bd31ea926a4b5adf6ef0b6472db47e0dfffbb8 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Sat, 8 Mar 2014 23:18:09 -0500 Subject: [PATCH] whatsnew: hmac conforms to pep 247. (#18775) --- Doc/whatsnew/3.4.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index f556311eebb..80cf2b11ce8 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -832,6 +832,11 @@ which the value of *digestmod* defaults to ``MD5`` is deprecated: in a future version of Python there will be no default value. (Contributed by Christian Heimes in :issue:`17276`.) +With the addition of :attr:`~hmac.HMAC.block_size` and :attr:`~hmac.HMAC.name` +attributes (and the formal documentation of the :attr:`~hmac.HMAC.digest_size` +attribute), the :mod:`hmac` module now conforms fully to the :pep:`247` API. +(Contributed by Christian Heimes in :issue:`18775`.) + html ----