I tried googling this, couldn\'t find an answer, searched here, couldn\'t find an answer. Has anyone looked into whether it\'s thread safe to write to a Serial() object (pyseri
I have done this with pyserial. Reading from one thread and writing from another should not cause problems in general, since there isn't really any kind of resource arbitration problem. Serial ports are full duplex, so reading and writing can happen completely independently and at the same time.