New issue by imrn on void-packages repository https://github.com/void-linux/void-packages/issues/21994 Description: I don't know if it is libressl related but python ssl support is not working. See: #20935 ```python3 import http.client conn = http.client.HTTPSConnection("www.python.org") conn.request("GET", "/") r1 = conn.getresponse() print(r1.status, r1.reason) ``` terminates with: AttributeError: module 'http.client' has no attribute 'HTTPSConnection' Similarly: (Install python3-requests first) ```python3 import requests r = requests.get('https://www.python.org') print(r.text) ``` requests.exceptions.SSLError: HTTPSConnectionPool(host='https://www.python.org', port=443): Max retries exceeded with url: / (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available."))