[issue44362] improve documentation of SSL deprecations

2021-06-11 Thread miss-islington
miss-islington added the comment: New changeset d7930fb720b5e9db2076b116dffcd52b6ca71438 by Miss Islington (bot) in branch '3.10': bpo-44362: ssl: improve deprecation warnings and docs (GH-26646) https://github.com/python/cpython/commit/d7930fb720b5e9db2076b116dffcd52b6ca71438 -- _

[issue44362] improve documentation of SSL deprecations

2021-06-11 Thread Christian Heimes
Christian Heimes added the comment: New changeset e26014f1c47d26d6097ff7a0f25384bfbde714a9 by Christian Heimes in branch 'main': bpo-44362: ssl: improve deprecation warnings and docs (GH-26646) https://github.com/python/cpython/commit/e26014f1c47d26d6097ff7a0f25384bfbde714a9 -- ___

[issue44362] improve documentation of SSL deprecations

2021-06-11 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +25252 pull_request: https://github.com/python/cpython/pull/26665 ___ Python tracker _

[issue44362] improve documentation of SSL deprecations

2021-06-10 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch nosy: +christian.heimes nosy_count: 6.0 -> 7.0 pull_requests: +25232 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26646 ___ Python tracker

[issue44362] improve documentation of SSL deprecations

2021-06-10 Thread Christian Heimes
Change by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue44362] improve documentation of SSL deprecations

2021-06-10 Thread Thomas Grainger
Thomas Grainger added the comment: > Would you like me to submit a PR for this simple patch? > > https://github.com/jdevries3133/cpython/commit/42d9bd7f97f03b49d4fc89780616704998492ac1 TLS_PROTOCOL_CLIENT and TLS_PROTOCOL_SERVER are defined in terms of the deprecated TLS_PROTOCOL, so now th

[issue44362] improve documentation of SSL deprecations

2021-06-10 Thread Jack DeVries
Jack DeVries added the comment: Would you like me to submit a PR for this simple patch? https://github.com/jdevries3133/cpython/commit/42d9bd7f97f03b49d4fc89780616704998492ac1 -- ___ Python tracker

[issue44362] improve documentation of SSL deprecations

2021-06-09 Thread Christian Heimes
Christian Heimes added the comment: You either use TLS_PROTOCOL_CLIENT for a client-side socket or TLS_PROTOCOL_SERVER for a server-side socket. TLS_PROTOCOL_CLIENT gives you a secure context for client connections with cert and hostname verification. --

[issue44362] improve documentation of SSL deprecations

2021-06-09 Thread Jack DeVries
Jack DeVries added the comment: These changes are part of PEP 644; support for OpenSSL v1.1.1. The benefits are detailed in `the PEP `_. Later, the deprecation process began in `bpo-43880 `_. It seems lik

[issue44362] improve documentation of SSL deprecations

2021-06-09 Thread Christian Heimes
Change by Christian Heimes : -- assignee: -> docs@python components: +Documentation, SSL nosy: +docs@python type: -> enhancement ___ Python tracker ___ __

[issue44362] improve documentation of SSL deprecations

2021-06-09 Thread Thomas Grainger
Thomas Grainger added the comment: It's also confusing that other not deprecated flags are described in terms of this deprecated flag. These will need rewriting when the deprecated flag is removed -- ___ Python tracker

[issue44362] improve documentation of SSL deprecations

2021-06-09 Thread Thomas Grainger
New submission from Thomas Grainger : > I can see in the 3.10 release notes, that ssl.PROTOCOL_TLS becomes > deprecated. Is there any further context explaining why, and what the > preferred usage is instead, so that I (and anyone else) can understand this a > bit more thoroughly? https://gi