[issue39616] SSLContext.check_hostname description is inaccurate wrt match_hostname

2021-03-27 Thread miss-islington
miss-islington added the comment: New changeset c84e769c2b4108e1218e09652cb3bce34c541f8a by Miss Islington (bot) in branch '3.9': bpo-39616: clarify SSLContext.check_hostname effect (GH-18484) https://github.com/python/cpython/commit/c84e769c2b4108e1218e09652cb3bce34c541f8a --

[issue39616] SSLContext.check_hostname description is inaccurate wrt match_hostname

2021-03-27 Thread miss-islington
miss-islington added the comment: New changeset 9de6451558c38537b2335d6e04e3bf8743c30576 by Miss Islington (bot) in branch '3.8': bpo-39616: clarify SSLContext.check_hostname effect (GH-18484) https://github.com/python/cpython/commit/9de6451558c38537b2335d6e04e3bf8743c30576 --

[issue39616] SSLContext.check_hostname description is inaccurate wrt match_hostname

2021-03-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +23785 pull_request: https://github.com/python/cpython/pull/25037 ___ Python tracker ___

[issue39616] SSLContext.check_hostname description is inaccurate wrt match_hostname

2021-03-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +23784 pull_request: https://github.com/python/cpython/pull/25036 ___ Python tracker ___

[issue39616] SSLContext.check_hostname description is inaccurate wrt match_hostname

2021-03-27 Thread miss-islington
miss-islington added the comment: New changeset 9798cef92b882cd82a338d3368eaf3c4a32f5c2d by Ville Skyttä in branch 'master': bpo-39616: clarify SSLContext.check_hostname effect (GH-18484) https://github.com/python/cpython/commit/9798cef92b882cd82a338d3368eaf3c4a32f5c2d -- nosy:

[issue39616] SSLContext.check_hostname description is inaccurate wrt match_hostname

2021-03-26 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue39616] SSLContext.check_hostname description is inaccurate wrt match_hostname

2020-02-12 Thread Ville Skyttä
Change by Ville Skyttä : -- keywords: +patch pull_requests: +17857 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18484 ___ Python tracker ___

[issue39616] SSLContext.check_hostname description is inaccurate wrt match_hostname

2020-02-12 Thread Ville Skyttä
New submission from Ville Skyttä : Doc says "Whether to match the peer cert’s hostname with match_hostname() in SSLSocket.do_handshake()." but match_hostname() is no longer used to do that in the first place, OpenSSL is used for that. check_hostname affects the OpenSSL usage, too. --