Issue #21994: Fix SyntaxError in the SSLContext.check_hostname documentation.

This commit is contained in:
Berker Peksag 2014-07-17 05:00:36 +03:00
parent 2c6a3aedeb
commit 38bf87c7f2
1 changed files with 2 additions and 2 deletions

View File

@ -1220,8 +1220,8 @@ to speed up repeated connections from the same clients.
context.load_default_certs()
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
ssl_sock = context.wrap_socket(s, server_hostname='www.verisign.com'):
ssl_sock.connect(('www.verisign.com', 443))
ssl_sock = context.wrap_socket(s, server_hostname='www.verisign.com')
ssl_sock.connect(('www.verisign.com', 443))
.. versionadded:: 3.4