im trying to call from a thread:
self.sock.send("string") (sock is an instance of bluetooth rfcomm socket)
but the thread doesnt even get executed. no there are no locks waiting. the program simply hangs.
but if i replace the "self.sock.send("string")" with something simple like "print "a" ", the thread gets executed.
whats wrong?

Reply With Quote

