diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-10 17:16:29 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-10 17:16:29 (GMT) |
commit | 1be815aac49bc0dc3937eb3a618fc9f1a6deb51a (patch) | |
tree | 53a031df40dc4b8cebfb5b5fe586ffdecd78c392 /Misc | |
parent | cda41d3bf74f97f8956eb9018bdc02c693b65282 (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -268,6 +268,7 @@ Carey Evans Tim Everett Paul Everitt David Everly +Daniel Evers Greg Ewing Martijn Faassen Clovis Fabricio @@ -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 |