diff options
author | Bo Bayles <bbayles@gmail.com> | 2018-01-29 14:31:32 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2018-01-29 14:31:32 (GMT) |
commit | f5a793522d539afc84ac7888c9ad189097c43a75 (patch) | |
tree | 7c6dd0d68914fd5388e34d3d0f97b4f1061af24a /Doc/whatsnew/2.7.rst | |
parent | 5679277fdde2d001ffa439559e2078590332baf2 (diff) | |
download | cpython-f5a793522d539afc84ac7888c9ad189097c43a75.zip cpython-f5a793522d539afc84ac7888c9ad189097c43a75.tar.gz cpython-f5a793522d539afc84ac7888c9ad189097c43a75.tar.bz2 |
bpo-32304: Fix distutils upload for tar files ending with b'\r' (GH-5264) (GH-5331)
Patch by Bo Bayles.
Diffstat (limited to 'Doc/whatsnew/2.7.rst')
-rw-r--r-- | Doc/whatsnew/2.7.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index 1857aa4..53333eb 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -1218,6 +1218,11 @@ changes, or look through the Subversion logs for all the details. created some new files that should be included. (Fixed by Tarek Ziadé; :issue:`8688`.) + 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`.) + * The :mod:`doctest` module's :const:`IGNORE_EXCEPTION_DETAIL` flag will now ignore the name of the module containing the exception being tested. (Patch by Lennart Regebro; :issue:`7490`.) |