Skip to content

Commit d7ea5ef

Browse files
committed
fixup: Use older attribute name
1 parent 9f114fa commit d7ea5ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ def test_RawIOBase_read(self):
896896
def test_RawIOBase_read_bounds_checking(self):
897897
# Make sure a `.readinto` call which returns a value outside
898898
# (0, len(buffer)) raises.
899-
class Misbehaved(self.io.RawIOBase):
899+
class Misbehaved(self.RawIOBase):
900900
def __init__(self, readinto_return) -> None:
901901
self._readinto_return = readinto_return
902902
def readinto(self, b):

0 commit comments

Comments
 (0)