File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -121,3 +121,10 @@ class TextIOBase(_io._TextIOBase, IOBase):
121121 pass
122122else :
123123 RawIOBase .register (_WindowsConsoleIO )
124+
125+
126+ # XXX: RUSTPYTHON; borrow IncrementalNewlineDecoder from _pyio
127+ try :
128+ from _pyio import IncrementalNewlineDecoder
129+ except ImportError :
130+ pass
Original file line number Diff line number Diff line change @@ -3895,11 +3895,6 @@ def test_reconfigure_write_fromascii(self):
38953895 def test_reconfigure_write (self ):
38963896 super ().test_reconfigure_write ()
38973897
3898- # TODO: RUSTPYTHON
3899- @unittest .expectedFailure
3900- def test_reconfigure_write_non_seekable (self ):
3901- super ().test_reconfigure_write_non_seekable ()
3902-
39033898 # TODO: RUSTPYTHON
39043899 @unittest .expectedFailure
39053900 def test_reconfigure_defaults (self ):
You can’t perform that action at this time.
0 commit comments