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
For Python 3, prefix the string literals with a b:
b
self.wfile.write(b"bar")