Patch #552060: Add SSLFakeSocket.sendall. Also committed for 2.2 maint.

This commit is contained in:
Martin v. Löwis 2002-06-02 12:33:22 +00:00
parent 10ff706e27
commit 9ea6c19747
1 changed files with 2 additions and 0 deletions

View File

@ -137,6 +137,8 @@ class SSLFakeSocket:
self.sslobj.write(str)
return len(str)
sendall = send
def close(self):
self.realsock.close()