summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-05-10 17:16:03 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-05-10 17:16:03 (GMT)
commit47d1d0dc30a81f507fd51cd4c2abfaec735fdf13 (patch)
tree8d3cfe4bebda74e33650984ba8d8f7594e26a545 /Misc
parent351761236adc0196160370d09d818ffa7d4238ac (diff)
downloadcpython-47d1d0dc30a81f507fd51cd4c2abfaec735fdf13.zip
cpython-47d1d0dc30a81f507fd51cd4c2abfaec735fdf13.tar.gz
cpython-47d1d0dc30a81f507fd51cd4c2abfaec735fdf13.tar.bz2
Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in
order to accept exactly one connection. Patch by Daniel Evers.
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 9b9ff68..4270934 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -243,6 +243,7 @@ Carey Evans
Tim Everett
Paul Everitt
David Everly
+Daniel Evers
Greg Ewing
Martijn Faassen
Clovis Fabricio
diff --git a/Misc/NEWS b/Misc/NEWS
index 0214c0b..7517baf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -80,6 +80,9 @@ Core and Builtins
Library
-------
+- Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in
+ order to accept exactly one connection. Patch by Daniel Evers.
+
- Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional.
- Issue #11164: Remove obsolete allnodes test from minidom test.