This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Drop loop._make_legacy_ssl_transport
Type: Stage: resolved
Components: asyncio, Library (Lib) Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, yselivanov
Priority: normal Keywords: patch

Created on 2017-11-18 14:44 by asvetlov, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4451 merged asvetlov, 2017-11-18 15:11
PR 4453 closed python-dev, 2017-11-18 16:54
Messages (3)
msg306482 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2017-11-18 14:44
It uses `wrap_socket` and exists only for backward compatibility with Python without ssl.MemoryBIO, which is Python 3.4

Let's cut it out from Python 3.7 and 3.6 -- it's safe, pretty sure.
msg306483 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2017-11-18 14:44
+1
msg306484 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2017-11-18 16:54
New changeset 51d546ae4d563fde608e23c9c337fefd7e95c93f by Andrew Svetlov in branch 'master':
bpo-32069: Drop legacy SSL transport (#4451)
https://github.com/python/cpython/commit/51d546ae4d563fde608e23c9c337fefd7e95c93f
History
Date User Action Args
2022-04-11 14:58:54adminsetgithub: 76250
2017-11-18 17:18:36asvetlovsetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: - Python 3.6
2017-11-18 16:54:18python-devsetpull_requests: + pull_request4390
2017-11-18 16:54:07asvetlovsetmessages: + msg306484
2017-11-18 15:11:51asvetlovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request4388
2017-11-18 14:44:53yselivanovsetmessages: + msg306483
2017-11-18 14:44:11asvetlovcreate