Skip to content

Commit c09a92b

Browse files
committed
Fix seeking to the end of the buffered data in BufferedStream.
Previously, you could only seek to the final character, and not the current end of the buffered data.
1 parent 6d7e66c commit c09a92b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

html5lib/inputstream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def tell(self):
6363
return pos
6464

6565
def seek(self, pos):
66-
assert pos < self._bufferedBytes()
66+
assert pos <= self._bufferedBytes()
6767
offset = pos
6868
i = 0
6969
while len(self.buffer[i]) < offset:

0 commit comments

Comments
 (0)