New comment by imrn on void-packages repository https://github.com/void-linux/void-packages/issues/21994#issuecomment-629645150 Comment: Non-SSL version just works. (Note 'HTTP' below. 'S'. is absent) I guess the problem is local to something between python and libressl. But I can not understand why it is specific to my machine. How can I find it? Any ideas? ```python3 #!/bin/python3 import http.client conn = http.client.HTTPConnection("www.python.org") conn.request("GET", "/") r1 = conn.getresponse() print(r1.status, r1.reason)```