@@ -1039,8 +1039,6 @@ def test_destructor(self):
10391039 super ().test_destructor (self )
10401040
10411041class PyIOTest (IOTest ):
1042- # TODO: RUSTPYTHON, can't resize b/c of existing exports
1043- @unittest .expectedFailure
10441042 def test_optional_abilities (self ):
10451043 super ().test_optional_abilities ()
10461044
@@ -2630,8 +2628,7 @@ def test_non_text_encoding_codecs_are_rejected(self):
26302628 with self .assertRaisesRegex (LookupError , "is not a text encoding" ):
26312629 self .TextIOWrapper (b , encoding = "hex" )
26322630
2633- # TODO: RUSTPYTHON
2634- @unittest .expectedFailure
2631+ @unittest .skip ('TODO: RUSTPYTHON' )
26352632 def test_detach (self ):
26362633 r = self .BytesIO ()
26372634 b = self .BufferedWriter (r )
@@ -2693,8 +2690,7 @@ def test_line_buffering(self):
26932690 t .write ("A\r B" )
26942691 self .assertEqual (r .getvalue (), b"XY\n ZA\r B" )
26952692
2696- # TODO: RUSTPYTHON
2697- @unittest .expectedFailure
2693+ @unittest .skip ('TODO: RUSTPYTHON' )
26982694 def test_reconfigure_line_buffering (self ):
26992695 r = self .BytesIO ()
27002696 b = self .BufferedWriter (r , 1000 )
@@ -3924,16 +3920,12 @@ class PyTextIOWrapperTest(TextIOWrapperTest):
39243920 def test_newlines (self ):
39253921 super ().test_newlines ()
39263922
3927- # TODO: RUSTPYTHON
3928- @unittest .expectedFailure
39293923 def test_line_buffering (self ):
39303924 super ().test_line_buffering ()
39313925
39323926 def test_seeking_too (self ):
39333927 super ().test_seeking_too ()
39343928
3935- # TODO: RUSTPYTHON, can't resize b/c of existing exports
3936- @unittest .expectedFailure
39373929 def test_bufio_write_through (self ):
39383930 super ().test_bufio_write_through ()
39393931
0 commit comments