<div>I have 2 thead instances,</div>
<div>A and B,</div>
<div>In A's run method, if I call B.Method(), it will be executed in thead A,</div>
<div>but I want B.Method() to be executed in B's thread.</div>
<div>That's to say, I want to tell Thead B to do B's stuff in B's thread,</div>
<div>kinda like PostMessage in win32.</div>
<div>Can I do it in python?</div>
<div>How?</div>
<div>Thank you in advance.</div>