Re: [Zope-dev] [zope.testbrowser] r84900

2009-03-18 Thread Malthe Borch
2009/3/18 Christian Theune : > Did this get resolved by any means? As it didn't spur any discussion at > all, you might want to at least file a bug tracker issue for that > problem. It has now been filed as https://bugs.launchpad.net/zope3/+bug/344680. \malthe

Re: [Zope-dev] [zope.testbrowser] r84900

2009-03-18 Thread Christian Theune
Malthe, On Mon, 2009-03-09 at 19:57 +0300, Malthe Borch wrote: > Code snippet: > > >>>def open(self, url, data=None): > >>> """See zope.testbrowser.interfaces.IBrowser""" > >>>url = str(url) > > This string coercion is unfortunate, because ``mechanize`` accepts a > (mechanize-

[Zope-dev] [zope.testbrowser] r84900

2009-03-09 Thread Malthe Borch
Code snippet: >>>def open(self, url, data=None): >>> """See zope.testbrowser.interfaces.IBrowser""" >>>url = str(url) This string coercion is unfortunate, because ``mechanize`` accepts a (mechanize-) request-object in place of a URL string here. Using a custom request object all