vegetax <[EMAIL PROTECTED]> 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')
--
http://mail.python.org/mailman/listinfo/python-list
