From 09ba9dc5069f729d0568ce2ea493880af261f4d4 Mon Sep 17 00:00:00 2001 From: Mariusz Mazur Date: Tue, 11 Jan 2005 18:15:16 +0000 Subject: [PATCH] - connections can't be nonblocking, since I often need to wait for a reply Changed files: modules/cons.py -> 1.4 --- modules/cons.py | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/cons.py b/modules/cons.py index 6fc02f2..00499c7 100644 --- a/modules/cons.py +++ b/modules/cons.py @@ -9,7 +9,6 @@ import cmds class Connection: def __init__(self, sock, authorized): - sock.setblocking(False) self.sock=sock self.authorized=authorized self.fileno=sock.fileno -- 2.44.0