<blockquote class="gmail_quote" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">&gt; The issues here are that threading (certainly for Python) is<br>
&gt; fundamentally limited to running on a single core, and can require<br>&gt; dancing around the GIL if multiple processes are accessing our<br>&gt; python state concurrently.<br>This I either don&#39;t parse, or don&#39;t agree with. Python code can&#39;t run<br>
concurrently with other Python code - the GIL prevents it. PyPy with<br>STM or Jython (which uses fine-grained locks) and C extensions in<br>cPython that release the GIL can run concurrently, potentially on<br>multiple cores.</blockquote>
<div>I dont think I parse what you said either. Perhaps we are saying the same thing...</div><div><br></div><div>Ill have a deeper read of this later and see if I can get it into my brain</div>