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