On Tue, Jan 15, 2013 at 4:55 AM, Brian Sutherland
<brian(at)vanguardistas(dot)net> wrote:
> I'm guessing that it's some kind of race condition, but I wouldn't know
> where to start looking.
Look for a recursive import (A imports B, B imports A) or multiple
threads trying to import simultaneously - Python sometimes has issues
with that. Quite a few of those issues were sorted out in recent 3.x
versions, but you're using 2.7.
ChrisA