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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy