summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2013-11-25 03:42:15 (GMT)
committerGregory P. Smith <greg@krypto.org>2013-11-25 03:42:15 (GMT)
commitd82634d606583d7e2a55f57be70882a77aba5171 (patch)
tree130a648008669f1d3ff616c440817db53c74561a /Misc
parent2612679ddc202ff684ea525142d2802c962b4f64 (diff)
downloadcpython-d82634d606583d7e2a55f57be70882a77aba5171.zip
cpython-d82634d606583d7e2a55f57be70882a77aba5171.tar.gz
cpython-d82634d606583d7e2a55f57be70882a77aba5171.tar.bz2
Fix test.test_support.bind_port() to not cause an error when Python was
compiled on a system with SO_REUSEPORT defined in the headers but run on a system with an OS kernel that does not support that new socket option.
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 4863da8..f845ae3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ Core and Builtins
Library
-------
+- Fix test.test_support.bind_port() to not cause an error when Python was
+ compiled on a system with SO_REUSEPORT defined in the headers but run on
+ a system with an OS kernel that does not support that new socket option.
+
- Issue #19633: Fixed writing not compressed 16- and 32-bit wave files on
big-endian platforms.