How can I get more information on Python unexpected SIGABRT?
I'm using: MacOS Catalina, version 10.15 (19A603). python 3.7.4 pip3 Running and Debugging the following Python code within venv: import jose print(jose) from jose import jwt token = jwt.encode({'key': 'value'}, 'secret', algorithm='HS256') print(token) results with the following error: Process finished…