mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #25951: Fix SSLSocket.sendall() to return None, by Aviv Palivoda
This commit is contained in:
parent
50badad807
commit
519f91215b
3 changed files with 13 additions and 7 deletions
|
@ -886,7 +886,6 @@ class SSLSocket(socket):
|
|||
while (count < amount):
|
||||
v = self.send(data[count:])
|
||||
count += v
|
||||
return amount
|
||||
else:
|
||||
return socket.sendall(self, data, flags)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue