Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in

order to accept exactly one connection.  Patch by Daniel Evers.
This commit is contained in:
Antoine Pitrou 2011-05-10 19:19:13 +02:00
commit 3cade9942e
5 changed files with 20 additions and 6 deletions

View file

@ -797,6 +797,13 @@ class GeneralModuleTests(unittest.TestCase):
for protocol in range(pickle.HIGHEST_PROTOCOL + 1):
self.assertRaises(TypeError, pickle.dumps, sock, protocol)
def test_listen_backlog0(self):
srv = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
srv.bind((HOST, 0))
# backlog = 0
srv.listen(0)
srv.close()
@unittest.skipUnless(thread, 'Threading required for this test.')
class BasicTCPTest(SocketConnectedTest):