New submission from Jonas Witschel :
Consider the following minimal example:
import ssl
context = ssl.create_default_context()
context.set_npn_protocols(['http/1.1', 'spdy/2'])
In Python 3.10, it fails with the following error:
AttributeError: 'SSLContext
Change by Jonas Witschel :
--
nosy: +diabonas
___
Python tracker
<https://bugs.python.org/issue46006>
___
___
Python-bugs-list mailing list
Unsubscribe:
Jonas Witschel added the comment:
I notice this has already been reported as bpo-46006 and bpo-46034, so closing
in favour of these.
--
resolution: -> duplicate
stage: -> resolved
status: open -> closed
___
Python tracke
Jonas Witschel added the comment:
Downstream bug report in Arch Linux: https://bugs.archlinux.org/task/72979
--
___
Python tracker
<https://bugs.python.org/issue46
New submission from Jonas Witschel :
Consider the following minimal example C code which is trying to import
jsonschema (https://python-jsonschema.readthedocs.io/en/stable/), compiled
using "gcc test_newinterpreter.c -I /usr/include/python3.10 -lpython3.10 -o
test_newinterpreter"