[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset c8c818b0d73680516d5841597b705a1feeb42113 by Miss Islington (bot) in branch '3.7': closes bpo-41235: Fix the error handling in SSLContext.load_dh_params() (GH-21389)

[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread miss-islington
miss-islington added the comment: New changeset 1d1c5743400bdf384ec83eb6ba5b39a355d121e3 by Miss Islington (bot) in branch '3.9': closes bpo-41235: Fix the error handling in SSLContext.load_dh_params() (GH-21385)

[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread miss-islington
miss-islington added the comment: New changeset c8b599ff0a4e4782e97e353a20146d3570845dbc by Miss Islington (bot) in branch '3.8': closes bpo-41235: Fix the error handling in SSLContext.load_dh_params() (GH-21385)

[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +20535 pull_request: https://github.com/python/cpython/pull/21389 ___ Python tracker ___

[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +20534 pull_request: https://github.com/python/cpython/pull/21388 ___ Python tracker ___

[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset aebc0495572c5bb85d2bd97d27cf93ab038b5a6a by Zackery Spytz in branch 'master': closes bpo-41235: Fix the error handling in SSLContext.load_dh_params() (GH-21385)

[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +20533 pull_request: https://github.com/python/cpython/pull/21387 ___ Python tracker

[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +20530 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21385 ___ Python tracker ___

[issue41235] Incorrect error handling in SSLContext.load_dh_params()

2020-07-07 Thread Zackery Spytz
New submission from Zackery Spytz : If the SSL_CTX_set_tmp_dh() call fails, SSLContext.load_dh_params() returns None with a live exception. It should return NULL in this case. -- assignee: christian.heimes components: Extension Modules, SSL messages: 373271 nosy: ZackerySpytz,