bpo-43787: Add __iter__ to GzipFile, BZ2File, and LZMAFile (GH-25353)
diff --git a/Lib/bz2.py b/Lib/bz2.py
index 43f321a..a2c588e 100644
--- a/Lib/bz2.py
+++ b/Lib/bz2.py
@@ -197,6 +197,10 @@ def readline(self, size=-1):
self._check_can_read()
return self._buffer.readline(size)
+ def __iter__(self):
+ self._check_can_read()
+ return self._buffer.__iter__()
+
def readlines(self, size=-1):
"""Read a list of lines of uncompressed bytes from the file.
diff --git a/Lib/gzip.py b/Lib/gzip.py
index 0a8993b..9a4e0f9 100644
--- a/Lib/gzip.py
+++ b/Lib/gzip.py
@@ -398,6 +398,10 @@ def readline(self, size=-1):
self._check_not_closed()
return self._buffer.readline(size)
+ def __iter__(self):
+ self._check_not_closed()
+ return self._buffer.__iter__()
+
class _GzipReader(_compression.DecompressReader):
def __init__(self, fp):
diff --git a/Lib/lzma.py b/Lib/lzma.py
index c8b1970..2ada7d8 100644
--- a/Lib/lzma.py
+++ b/Lib/lzma.py
@@ -221,6 +221,10 @@ def readline(self, size=-1):
self._check_can_read()
return self._buffer.readline(size)
+ def __iter__(self):
+ self._check_can_read()
+ return self._buffer.__iter__()
+
def write(self, data):
"""Write a bytes object to the file.