@@ -2445,12 +2445,10 @@ def test_ftruncate(self):
24452445 self .check (os .ftruncate , 0 )
24462446 self .check_bool (os .truncate , 0 )
24472447
2448- @unittest .expectedFailureIfWindows ('TODO: RUSTPYTHON; (OSError: [Errno 18] There are no more files.)' )
24492448 @unittest .skipUnless (hasattr (os , 'lseek' ), 'test needs os.lseek()' )
24502449 def test_lseek (self ):
24512450 self .check (os .lseek , 0 , 0 )
24522451
2453- @unittest .expectedFailureIfWindows ('TODO: RUSTPYTHON; (OSError: [Errno 18] There are no more files.)' )
24542452 @unittest .skipUnless (hasattr (os , 'read' ), 'test needs os.read()' )
24552453 def test_read (self ):
24562454 self .check (os .read , 1 )
@@ -2464,7 +2462,6 @@ def test_readv(self):
24642462 def test_tcsetpgrpt (self ):
24652463 self .check (os .tcsetpgrp , 0 )
24662464
2467- @unittest .expectedFailureIfWindows ('TODO: RUSTPYTHON; (OSError: [Errno 18] There are no more files.)' )
24682465 @unittest .skipUnless (hasattr (os , 'write' ), 'test needs os.write()' )
24692466 def test_write (self ):
24702467 self .check (os .write , b" " )
@@ -2473,7 +2470,6 @@ def test_write(self):
24732470 def test_writev (self ):
24742471 self .check (os .writev , [b'abc' ])
24752472
2476- @unittest .expectedFailureIfWindows ('TODO: RUSTPYTHON; os.get_inheritable not implemented yet for all platforms' )
24772473 @support .requires_subprocess ()
24782474 def test_inheritable (self ):
24792475 self .check (os .get_inheritable )
0 commit comments