Threads em python

Trecho do Head First Python:

Threads do indeed exist in Python but should be avoided where possible.
This has nothing to do with the quality of Python?s threading library and
everything to do with Python?s implementation, especially the implementation
known as CPython (which is more than likely the one you?re running
now). Python is implemented using a technology known as the Global
Interpreter Lock (GIL), which enforces a restriction that Python can only
ever run on a single interpreter process, even in the presence of multiple
processors. What all this means to you is that your beautifully designed and implemented
program that uses threads will never run faster on multiple processors even
if they exist, because it can?t use them. Your threaded application will run
serially and, in many cases, run considerably slower than if you had developed
the same functionality without resorting to threads. Main message: don?t use threads with Python until the GIL restriction is
removed?if it ever is.”

Isso quer dizer que somente se usa threads em python quando a aplicação tem tanto atividades IO-Bound quanto CPU-Bound?

Você pode usar Jython ou IronPython para remover esse problema.