|
|
|
|
|
by AndyMcConachie
2613 days ago
|
|
So this doesn't actually compile any Python, it just launches a Python interpreter when it encounters Python code? If I have many threads running Python code will it launch a new interpreter for each thread? Does it use Python 2 or 3? Thanks! I might actually use this sometime for scrap code that I'm writing to test stuff. |
|
Python doesn't really do multithreading: https://wiki.python.org/moin/GlobalInterpreterLock
It uses Python 3 of course. Using Python 2 these days would be a crime.