I\'m playing a little with Python 3.2.2 and want to write a simple web server to access some data remotely. This data will be generated by Python so I don\'t want to use the Sim
Just use this when using Python 3.X
self.wfile.write(bytes("This is a test.", "utf-8"))
This is a test.