Skip to content

Commit 17bf6ab

Browse files
[3.14] gh-62184: Remove _pyio import of _io.FileIO (gh-134192) (gh-134437)
This was added in the add of `_io`, isn't used since bpo-21859 when a `_pyio` implementation was added which defines `FileIO` lower down in the file. (cherry picked from commit 0a68068) Co-authored-by: Cody Maloney <cmaloney@users.noreply.github.com>
1 parent fade04e commit 17bf6ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/_pyio.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -648,8 +648,6 @@ def write(self, b):
648648
self._unsupported("write")
649649

650650
io.RawIOBase.register(RawIOBase)
651-
from _io import FileIO
652-
RawIOBase.register(FileIO)
653651

654652

655653
class BufferedIOBase(IOBase):
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Remove import of C implementation of :class:`io.FileIO` from Python
2+
implementation which has its own implementation

0 commit comments

Comments
 (0)