-
-
Notifications
You must be signed in to change notification settings - Fork 30.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-34971: add support for TLS sessions from asyncio #9840
Conversation
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed the PSF contributor agreement (CLA). Unfortunately our records indicate you have not signed the CLA. For legal reasons we need you to sign this before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. You can check yourself to see if the CLA has been received. Thanks again for your contribution, we look forward to reviewing it! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The existing session code is TLS 1.2 only. For TLS 1.3, I need to come up with a complete redesign first. Even for TLS 1.2, the existing session code is buggy, because TLS connections can't be terminated properly. IMHO it doesn't make sense to add a partly broken feature.
(waiting for @tiran's approval of this new feature before we begin to consider it) |
@tiran any news on TLS redesign? Where is this effort taking place? How can I help or get involved in any way? Thanks |
@RemiCardona I'm at PyCon and will work with some people on a new design. |
How did the redesign go? I'd love to get this in so we can make aiohttp support HTTPS proxies for cpython 3.8 :) |
Apparently I was premature closing this. Reopening (but this isn't my specialty, so I'm not going to help you get this merged -- sorry). |
Most changes to Python require a NEWS entry. Please add it using the blurb_it web app or the blurb command-line tool. |
The following commit authors need to sign the Contributor License Agreement: |
https://bugs.python.org/issue34971
https://bugs.python.org/issue34971