cgi "print statement" in multithreaded enviroment?

Paul Rubin http
Mon May 2 20:51:09 EDT 2005


vegetax <vegeta.z at gmail.com> writes:
> But i want to use "print" as a commodity feature, print >>
> self.response,'html..'  is longer to type than
> self.response.write('html..')

w = self.response.write

w('html...')
w('more html...')
w('still more html')



More information about the Python-list mailing list