From: Berker Peksag Date: Sat, 19 Mar 2016 07:05:59 +0000 (+0200) Subject: Issue #26560: Avoid potential ValueError in BaseHandler.start_response X-Git-Tag: v3.6.0a1~434 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf934a1c9b9fbafbef0bbeb3288f4431bbc5652f;p=python Issue #26560: Avoid potential ValueError in BaseHandler.start_response Initial patch by Peter Inglesby. --- cf934a1c9b9fbafbef0bbeb3288f4431bbc5652f diff --cc Misc/NEWS index 832d1accd4,bdcfebf856..fe3071ecb5 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -226,11 -90,10 +226,14 @@@ Core and Builtin Library ------- + - Issue #26560: Avoid potential ValueError in BaseHandler.start_response. + Initial patch by Peter Inglesby. + +- Issue #26567: Add a new function :c:func:`PyErr_ResourceWarning` function to + pass the destroyed object. Add a *source* attribute to + :class:`warnings.WarningMessage`. Add warnings._showwarnmsg() which uses + tracemalloc to get the traceback where source object was allocated. + - Issue #26313: ssl.py _load_windows_store_certs fails if windows cert store is empty. Patch by Baji.