Brant Watson 2020-01-20 13:00:27 -06:00
parent 5df7aafeda
commit deedc79fd1
1 changed files with 6 additions and 0 deletions

View File

@ -170,6 +170,12 @@ class SpooledIOBase(object):
def seekable(self):
return True
def readable(self):
return True
def writable(self):
return True
__next__ = next
def __len__(self):