summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBo Bayles <bbayles@gmail.com>2018-01-26 00:02:03 (GMT)
committerÉric Araujo <merwok@netwok.org>2018-01-26 00:02:03 (GMT)
commit2fc98ae115e2a2095a0bcf388c27a878aafdb454 (patch)
treebed6c6b572eff1a289631ad1201573b086418781 /Doc
parentc47dacb69054f6fe1c2465df585985430f7fe366 (diff)
downloadcpython-2fc98ae115e2a2095a0bcf388c27a878aafdb454.zip
cpython-2fc98ae115e2a2095a0bcf388c27a878aafdb454.tar.gz
cpython-2fc98ae115e2a2095a0bcf388c27a878aafdb454.tar.bz2
bpo-32304: Fix distutils upload for sdists ending with \x0d (GH-5264)
Patch by Bo Bayles.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.7.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index e9f0570..0e1714e 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -416,6 +416,11 @@ therefore included in source distributions.
and ``platforms`` fields are not specified as a list or a string.
(Contributed by Berker Peksag in :issue:`19610`.)
+The ``upload`` command now longer tries to change CR end-of-line characters
+to CRLF. This fixes a corruption issue with sdists that ended with a byte
+equivalent to CR.
+(Contributed by Bo Bayles in :issue:`32304`.)
+
http.client
-----------