(self)
| 114 | |
| 115 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 116 | def test_raw(self): |
| 117 | for obj in (b"foo", bytearray(b"foo")): |
| 118 | with self.subTest(obj=obj): |
| 119 | self.check_raw(obj, obj) |
| 120 | |
| 121 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 122 | def test_raw_ndarray(self): |