(value)
| 33 | return s[::-1] |
| 34 | |
| 35 | def bigendian_to_native(value): |
| 36 | if ISBIGENDIAN: |
| 37 | return value |
| 38 | else: |
| 39 | return string_reverse(value) |
| 40 | |
| 41 | class StructTest(ComplexesAreIdenticalMixin, unittest.TestCase): |
| 42 | def test_isbigendian(self): |
nothing calls this directly
no test coverage detected
searching dependent graphs…