diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-10 17:19:13 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-10 17:19:13 (GMT) |
commit | 3cade9942e5e3cc6d185ee5c1b444498e297be02 (patch) | |
tree | 472cf36ec53e9a21ea524c620c06a9d376bd0256 /Misc | |
parent | 388196ed72fbac61eea511eefb36f8f94634a8b4 (diff) | |
parent | 1be815aac49bc0dc3937eb3a618fc9f1a6deb51a (diff) | |
download | cpython-3cade9942e5e3cc6d185ee5c1b444498e297be02.zip cpython-3cade9942e5e3cc6d185ee5c1b444498e297be02.tar.gz cpython-3cade9942e5e3cc6d185ee5c1b444498e297be02.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
@@ -270,6 +270,7 @@ Carey Evans Tim Everett Paul Everitt David Everly +Daniel Evers Winston Ewert Greg Ewing Martijn Faassen @@ -143,6 +143,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 #12011: signal.signal() and signal.siginterrupt() raise an OSError, instead of a RuntimeError: OSError has an errno attribute. |