I have just migrate from python 2.x to python 3.x and the code below has stopped working.
#self.request is the TCP socket connected to the client
self.data = self.request.recv(1024).strip()
print "{} wrote:".format(self.client_address[0])
print self.data
words = self.data.split(',') //the problem seems to be here
Any idea how to fix this? thanks!