(self)
| 1152 | ]) |
| 1153 | |
| 1154 | def test_valid_bytes(self): |
| 1155 | self.assert_roundtrip_not_equal([ |
| 1156 | *(s.encode('utf8') for s in self.VALID_SCRIPTS), |
| 1157 | ], expecttype=types.CodeType) |
| 1158 | |
| 1159 | def test_invalid_bytes(self): |
| 1160 | self.assert_not_shareable([ |
nothing calls this directly
no test coverage detected