summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-02-18 10:43:55 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-02-18 10:43:55 (GMT)
commitc12fef9aa3282144dba83e0cd543bb510de6a745 (patch)
treefdf6947aec6a8040f6d926fdf2497b0e0c4b7902 /Misc
parent8f0432ffbb81d1acb8e950dbdcdb8d4d305c13ba (diff)
downloadcpython-c12fef9aa3282144dba83e0cd543bb510de6a745.zip
cpython-c12fef9aa3282144dba83e0cd543bb510de6a745.tar.gz
cpython-c12fef9aa3282144dba83e0cd543bb510de6a745.tar.bz2
Issue #26309: Shut down socketserver request if verify_request() is false
Patch by Aviv Palivoda.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 20be117..2442290 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,6 +76,10 @@ Core and Builtins
Library
-------
+- Issue #26309: In the "socketserver" module, shut down the request (closing
+ the connected socket) when verify_request() returns false. Patch by Aviv
+ Palivoda.
+
- Issue #25939: On Windows open the cert store readonly in ssl.enum_certificates.
- Issue #25995: os.walk() no longer uses FDs proportional to the tree depth.