summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-05-10 17:16:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-05-10 17:16:29 (GMT)
commit1be815aac49bc0dc3937eb3a618fc9f1a6deb51a (patch)
tree53a031df40dc4b8cebfb5b5fe586ffdecd78c392 /Misc
parentcda41d3bf74f97f8956eb9018bdc02c693b65282 (diff)
downloadcpython-1be815aac49bc0dc3937eb3a618fc9f1a6deb51a.zip
cpython-1be815aac49bc0dc3937eb3a618fc9f1a6deb51a.tar.gz
cpython-1be815aac49bc0dc3937eb3a618fc9f1a6deb51a.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 5c33b2e..399de8c 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -268,6 +268,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 4309858..ac9ac79 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -86,6 +86,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 #11164: Stop trying to use _xmlplus in the xml module.
- Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch