You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@unittest.skipIf(sys.platform=='win32', "TODO: RUSTPYTHON; BrokenPipeError: (32, 'The process cannot access the file because it is being used by another process. (os error 32)')")
191
190
@unittest.skipIf(
192
191
support.is_wasi, "WASI does not support dup."
193
192
)
@@ -230,7 +229,6 @@ def test_read(self):
230
229
self.assertEqual(type(s), bytes)
231
230
self.assertEqual(s, b"spam")
232
231
233
-
@unittest.expectedFailure# TODO: RUSTPYTHON; AttributeError: module 'os' has no attribute 'readinto'. Did you mean: 'readlink'?
234
232
deftest_readinto(self):
235
233
withopen(os_helper.TESTFN, "w+b") asfobj:
236
234
fobj.write(b"spam")
@@ -262,7 +260,6 @@ def test_readinto(self):
262
260
os.lseek(fd, 0, 0)
263
261
self.assertEqual(os.readinto(fd, bytearray()), 0)
264
262
265
-
@unittest.expectedFailure# TODO: RUSTPYTHON; AttributeError: module 'os' has no attribute 'readinto'. Did you mean: 'readlink'?
@unittest.expectedFailureIf(sys.platformin ("darwin", "linux"), "TODO: RUSTPYTHON; AssertionError: \"configuration names must be strings or integers\" does not match \"Expected type 'str' but 'float' found.\"")
0 commit comments