(self, coder)
| 32 | return codecs.open(*args, **kwargs) |
| 33 | |
| 34 | def coding_checker(self, coder): |
| 35 | def check(input, expect): |
| 36 | self.assertEqual(coder(input), (expect, len(input))) |
| 37 | return check |
| 38 | |
| 39 | # On small versions of Windows like Windows IoT or Windows Nano Server not all codepages are present |
| 40 | def is_code_page_present(cp): |
no outgoing calls
no test coverage detected
searching dependent graphs…