durusmail: quixote-users: Re: quixote: next step
Re: quixote: next step
2000-10-25
2000-10-25
Resend: Re: quixote: next step
2000-10-25
Re: quixote: next step
2000-10-26
2000-10-26
2000-10-26
Python Interfaces
2000-12-04
2000-12-04
Re: quixote: next step
Andrew Kuchling
2000-10-26
On Thu, Oct 26, 2000 at 05:10:47PM +0200, Kaweh Kazemi wrote:
>    for r in l:
>        """

request.""" > r > """ = """ > #eval("request." + r) > """ I wonder if this is related to something I fixed yesterday... try skipping the 'response' attribute and not displaying it. Something like this: for r in l: if r == 'response': continue ... rest of loop ... I noticed that the HTTPResponse class had a __str__ method that actually mutates the object's contents, and fixed it in our CVS version (no anonymous CVS access available). Maybe that's what is messing up your output. --amk

reply