summaryrefslogtreecommitdiff
path: root/Lib/lzma.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/lzma.py')
-rw-r--r--Lib/lzma.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/lzma.py b/Lib/lzma.py
index 9abf06d91d..800f52198f 100644
--- a/Lib/lzma.py
+++ b/Lib/lzma.py
@@ -221,10 +221,6 @@ class LZMAFile(_compression.BaseStream):
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.