def on_message()

in TestChatServer/py/chatroom.py [0:0]


    def on_message(self, msg):
        for c in connections:
            if c is self:
                continue
            c.write_message(msg)