[issue31870] add timeout parameter for get_server_certificate in ssl.py

2021-04-23 Thread Christian Heimes
Christian Heimes added the comment: New changeset f05c2aed7e25087122613b51f152919c79641f66 by Christian Heimes in branch 'master': bpo-31870: Fix test_get_server_certificate_timeout on Windows (GH-25570) https://github.com/python/cpython/commit/f05c2aed7e25087122613b51f152919c79641f66

[issue31870] add timeout parameter for get_server_certificate in ssl.py

2021-04-23 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +24289 pull_request: https://github.com/python/cpython/pull/25570 ___ Python tracker ___

[issue31870] add timeout parameter for get_server_certificate in ssl.py

2021-04-23 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.10 -Python 3.8 ___ Python tracker ___

[issue31870] add timeout parameter for get_server_certificate in ssl.py

2021-04-23 Thread miss-islington
miss-islington added the comment: New changeset b2fac1afaa7c0d41a263781fcf94d8a92dc31b48 by Zackery Spytz in branch 'master': bpo-31870: Add a timeout parameter to ssl.get_server_certificate() (GH-22270) https://github.com/python/cpython/commit/b2fac1afaa7c0d41a263781fcf94d8a92dc31b48

[issue31870] add timeout parameter for get_server_certificate in ssl.py

2020-09-15 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 5.0 -> 6.0 pull_requests: +21325 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/22270 ___ Python tracker

[issue31870] add timeout parameter for get_server_certificate in ssl.py

2018-02-25 Thread Christian Heimes
Christian Heimes added the comment: It's too late to land a new feature in 3.7. -- stage: patch review -> needs patch versions: +Python 3.8 -Python 3.7 ___ Python tracker

[issue31870] add timeout parameter for get_server_certificate in ssl.py

2017-11-03 Thread Christian Heimes
Change by Christian Heimes : -- assignee: -> christian.heimes components: +SSL -Library (Lib) nosy: +alex, christian.heimes, dstufft, janssen stage: -> patch review versions: +Python 3.7 ___ Python tracker

[issue31870] add timeout parameter for get_server_certificate in ssl.py

2017-10-25 Thread Vex Woo
New submission from Vex Woo : The original get_server_certificate in ssl.py does not support socket timeout, def get_server_certificate(addr, ssl_version=PROTOCOL_TLS, ca_certs=None): """Retrieve the certificate from the server at the specified address, and return it