(self)
| 255 | self.assertEqual(actual, fp.read()) |
| 256 | |
| 257 | def test_recursion_limit(self): |
| 258 | # Check if the problem described in patch #1413711 exists. |
| 259 | limit = sys.getrecursionlimit() |
| 260 | old = [(i%2 and "K:%d" or "V:A:%d") % i for i in range(limit*2)] |
| 261 | new = [(i%2 and "K:%d" or "V:B:%d") % i for i in range(limit*2)] |
| 262 | difflib.SequenceMatcher(None, old, new).get_opcodes() |
| 263 | |
| 264 | def test_make_file_default_charset(self): |
| 265 | html_diff = difflib.HtmlDiff() |
nothing calls this directly
no test coverage detected