Simon Percivall wrote:
> How much you gain by starting threads is also determined by what you're
> doing in those threads. Remember (or learn): In CPython only one thread
> at a time can execute python code, so depending on your task threading
> might gain you little. If you're doing I/O or calling
How much you gain by starting threads is also determined by what you're
doing in those threads. Remember (or learn): In CPython only one thread
at a time can execute python code, so depending on your task threading
might gain you little. If you're doing I/O or calling functions written
in C (and if