* Jakub Wilk <[email protected]>, 2010-11-30, 20:48:
diff -uNr Cheetah-2.4.2.1.orig/cheetah/Tests/SyntaxAndOutput.py Cheetah-2.4.2.1/cheetah/Tests/SyntaxAndOutput.py --- Cheetah-2.4.2.1.orig/cheetah/Tests/SyntaxAndOutput.py 2010-10-18 15:00:44.668935001 -0400 +++ Cheetah-2.4.2.1/cheetah/Tests/SyntaxAndOutput.py 2010-10-18 14:43:56.500934997 -0400 @@ -847,17 +847,17 @@ def test10(self): r"""func placeholder - with ('''\nstring\n''')""" self.verify("$aFunc('''\naoeu\n''')", - "\naoeu\n") + "\naoeu\n", convertEOLs=False)def test11(self): r"""func placeholder - with ('''\nstring'\n''')""" self.verify("$aFunc('''\naoeu'\n''')", - "\naoeu'\n") + "\naoeu'\n", convertEOLs=False) def test12(self): r'''func placeholder - with ("""\nstring\n""")''' self.verify('$aFunc("""\naoeu\n""")', - "\naoeu\n") + "\naoeu\n", convertEOLs=False) def test13(self): """func placeholder - with (string*int)"""This one looks wrong. I believe that the tests were correct and the bug is somewhere else.
FYI, it was reported here: https://github.com/rtyler/cheetah/issues#issue/3 -- Jakub Wilk -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

