diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-04-03 02:12:54 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-03 02:12:54 (GMT) |
commit | 519f91215bd353c745946e5d892fd1f089dbcb84 (patch) | |
tree | 09bae2446a79d3d69a9a4ff72e1ec3084766f61e /Lib/ssl.py | |
parent | 50badad807abc5367359bd81a2a8051ff5cdce7e (diff) | |
download | cpython-519f91215bd353c745946e5d892fd1f089dbcb84.zip cpython-519f91215bd353c745946e5d892fd1f089dbcb84.tar.gz cpython-519f91215bd353c745946e5d892fd1f089dbcb84.tar.bz2 |
Issue #25951: Fix SSLSocket.sendall() to return None, by Aviv Palivoda
Diffstat (limited to 'Lib/ssl.py')
-rw-r--r-- | Lib/ssl.py | 1 |
1 files changed, 0 insertions, 1 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) |