mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 23:09:48 +00:00
Ignore return value of sendall; it's not None on py < 3.6.
https://bugs.python.org/issue25951
This commit is contained in:
@ -173,11 +173,9 @@ class BaseClientTestCase(_IrcTestCase):
|
|||||||
if not filter_pred or filter_pred(msg):
|
if not filter_pred or filter_pred(msg):
|
||||||
return msg
|
return msg
|
||||||
def sendLine(self, line):
|
def sendLine(self, line):
|
||||||
ret = self.conn.sendall(line.encode())
|
self.conn.sendall(line.encode())
|
||||||
assert ret is None
|
|
||||||
if not line.endswith('\r\n'):
|
if not line.endswith('\r\n'):
|
||||||
ret = self.conn.sendall(b'\r\n')
|
self.conn.sendall(b'\r\n')
|
||||||
assert ret is None
|
|
||||||
if self.show_io:
|
if self.show_io:
|
||||||
print('{:.3f} S: {}'.format(time.time(), line.strip()))
|
print('{:.3f} S: {}'.format(time.time(), line.strip()))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user