summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org>2016-06-03 00:13:36 (GMT)
committerGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org>2016-06-03 00:13:36 (GMT)
commitcef1f83c717d103575ab525040926db759d70d22 (patch)
tree029e5228009a86b9f9b4908faebf89fff9e26428 /Misc
parent3bad04ca62bba6d2a83f1c1f42d8840103aef015 (diff)
downloadcpython-cef1f83c717d103575ab525040926db759d70d22.zip
cpython-cef1f83c717d103575ab525040926db759d70d22.tar.gz
cpython-cef1f83c717d103575ab525040926db759d70d22.tar.bz2
Issue #25931: Don't defining socketserver.Forking* names on platforms such
as Windows that do not support os.fork().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f07dff4..1a1a8c7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,9 @@ Core and Builtins
Library
-------
+- Issue #25931: Don't defining socketserver.Forking* names on platforms such
+ as Windows that do not support os.fork().
+
- Issue #21776: distutils.upload now correctly handles HTTPError.
Initial patch by Claudiu Popa.