summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fs/iotools.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/iotools.py b/fs/iotools.py
index ce243c1..296efd3 100644
--- a/fs/iotools.py
+++ b/fs/iotools.py
@@ -93,6 +93,12 @@ class RawWrapper(object):
b[:len(data)] = data
return bytes_read
+ def readline(self, limit=-1):
+ return self._f.readline(limit)
+
+ def readlines(self, hint=-1):
+ return self._f.readlines(hint)
+
def writelines(self, sequence):
return self._f.writelines(sequence)