diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-10-05 22:21:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-10-05 22:21:09 (GMT) |
commit | 3cb9379881a91f81416b770795b0fc81c6de6bf9 (patch) | |
tree | 19d8337986ced2801b8652ff757dc800bf73940d /Lib/ssl.py | |
parent | b1fdf47ff5e5a81955c87dfc95d3eb5400da0e8e (diff) | |
download | cpython-3cb9379881a91f81416b770795b0fc81c6de6bf9.zip cpython-3cb9379881a91f81416b770795b0fc81c6de6bf9.tar.gz cpython-3cb9379881a91f81416b770795b0fc81c6de6bf9.tar.bz2 |
Remove unused "block" argument in SSLObject.do_handshake() (issue #21965)
Diffstat (limited to 'Lib/ssl.py')
-rw-r--r-- | Lib/ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -567,7 +567,7 @@ class SSLObject: """Return the number of bytes that can be read immediately.""" return self._sslobj.pending() - def do_handshake(self, block=False): + def do_handshake(self): """Start the SSL/TLS handshake.""" self._sslobj.do_handshake() if self.context.check_hostname: |