[Zope3-dev] doctest prb again

Adam Groszer agroszer at gmail.com
Fri Jul 20 04:39:21 EDT 2007


Hello Marius,

Great, that works ;-)
Thought that there is some more genreic-sane way.

Friday, July 20, 2007, 10:25:02 AM, you wrote:

> On Fri, Jul 20, 2007 at 10:09:18AM +0200, Adam Groszer wrote:
>> Hello,
>> 
>> How to solve the \r\n and \n mismatch between win32 and *nix in the
>> doctests?
>> 
>> doctest is:
>> """
>>     >>> ctrl.value
>>     '        Text inside\n        area!\n      '
>> """
>> 
>> fails with (on win32):
>> """
>> Failed example:
>>     ctrl.value
>> Expected:
>>     '        Text inside\n        area!\n      '
>> Got:
>>     '          Text inside\r\n          area!\r\n        '
>> """
>> 
>> ctrl.value comes from a html file in zope.testbrowser.ftests

> You could do

>     >>> ctrl.value.replace('\r', '')

> or strip the \r's in the place where you're reading that html file.

> Marius Gedminas

-- 
Best regards,
 Adam                            mailto:agroszer at gmail.com



More information about the Zope3-dev mailing list