Comment on A Julia Interpreter and DebuggerparentComments−truth_seeker7yAbout Python and performance, have you tried pypy runtime? It is an alternative to the default, cpython.http://speed.pypy.org−Rotareti7yIn addition to this. About Python and typing, have you tried mypy (statically typed Python)? I find the typing story quite decent since Python 3.6. I use it on every project that goes above ~1000 LOC.http://mypy-lang.org/
Comments
About Python and performance, have you tried pypy runtime? It is an alternative to the default, cpython.
http://speed.pypy.org
In addition to this. About Python and typing, have you tried mypy (statically typed Python)? I find the typing story quite decent since Python 3.6. I use it on every project that goes above ~1000 LOC.
http://mypy-lang.org/