def sendChatServer(self,data): '''send the chat message to everyone but the sender''' for client in self.connections: if client != data[0]: #send the chat message everywhere stringOut=Protical.chatSend(data[1][1][0])#the string to send out self.toWrite.put( (client,stringOut) ) return
def sendChatServer(self, data): '''send the chat message to everyone but the sender''' for client in self.connections: if client != data[0]: #send the chat message everywhere stringOut = Protical.chatSend( data[1][1][0]) #the string to send out self.toWrite.put((client, stringOut)) return
def msg(self): self.toSend.put(Protical.chatSend("poop"))