summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2020-05-20 14:37:25 (GMT)
committerGitHub <noreply@github.com>2020-05-20 14:37:25 (GMT)
commite572c7f6dbe5397153803eab256e4a4ca3384f80 (patch)
tree14e481f63778adcbeeddbb5880d2106195c28281 /Doc/whatsnew
parentbac170cd93bbae939fcb29ccc6b5d423f7f4a089 (diff)
downloadcpython-e572c7f6dbe5397153803eab256e4a4ca3384f80.zip
cpython-e572c7f6dbe5397153803eab256e4a4ca3384f80.tar.gz
cpython-e572c7f6dbe5397153803eab256e4a4ca3384f80.tar.bz2
bpo-40698: Improve distutils upload hash digests (GH-20260)
- Fix upload test on systems that blocks MD5 - Add SHA2-256 and Blake2b-256 digests based on new Warehous and twine specs. Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.9.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 86458a3..a483b19 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -331,6 +331,13 @@ and :meth:`~datetime.datetime.isocalendar()` of :class:`datetime.datetime`
methods now returns a :func:`~collections.namedtuple` instead of a :class:`tuple`.
(Contributed by Dong-hee Na in :issue:`24416`.)
+distutils
+---------
+
+The :command:`upload` command now creates SHA2-256 and Blake2b-256 hash
+digests. It skips MD5 on platforms that block MD5 digest.
+(Contributed by Christian Heimes in :issue:`40698`.)
+
fcntl
-----