mirror of https://github.com/python/cpython
Patch #552060: Add SSLFakeSocket.sendall. Also committed for 2.2 maint.
This commit is contained in:
parent
10ff706e27
commit
9ea6c19747
|
@ -137,6 +137,8 @@ class SSLFakeSocket:
|
|||
self.sslobj.write(str)
|
||||
return len(str)
|
||||
|
||||
sendall = send
|
||||
|
||||
def close(self):
|
||||
self.realsock.close()
|
||||
|
||||
|
|
Loading…
Reference in New Issue