summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-06-19 03:09:11 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-06-19 03:09:11 (GMT)
commit41dcf35c264b22df7821e08ea0961a3189b17def (patch)
tree2cc2ab967b646b90e9631b54dc604cdcac629870 /Misc
parent205a55f5c60c50ce9a064432fdf90036690e41a1 (diff)
parent2e4d3b133a8fe7be5469bc8f0d1a0f80a57f608c (diff)
downloadcpython-41dcf35c264b22df7821e08ea0961a3189b17def.zip
cpython-41dcf35c264b22df7821e08ea0961a3189b17def.tar.gz
cpython-41dcf35c264b22df7821e08ea0961a3189b17def.tar.bz2
Issue #21722: The distutils "upload" command now exits with a non-zero return code when uploading fails.
Patch by Martin Dengler.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index b802e94..52c00f8 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -309,6 +309,7 @@ Vincent Delft
Arnaud Delobelle
Konrad Delong
Erik Demaine
+Martin Dengler
John Dennis
L. Peter Deutsch
Roger Dev
diff --git a/Misc/NEWS b/Misc/NEWS
index b2a5760..0ed980a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -103,6 +103,9 @@ Core and Builtins
Library
-------
+- Issue #21722: The distutils "upload" command now exits with a non-zero
+ return code when uploading fails. Patch by Martin Dengler.
+
- Issue #21723: asyncio.Queue: support any type of number (ex: float) for the
maximum size. Patch written by Vajrasky Kok.