changeset: 92830:8da1aa71cd73 user: Antoine Pitrou date: Mon Oct 06 00:21:09 2014 +0200 files: Lib/ssl.py description: Remove unused "block" argument in SSLObject.do_handshake() (issue #21965) diff -r a79003f25a41 -r 8da1aa71cd73 Lib/ssl.py --- a/Lib/ssl.py Sun Oct 05 20:41:53 2014 +0200 +++ b/Lib/ssl.py Mon Oct 06 00:21:09 2014 +0200 @@ -567,7 +567,7 @@ """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: