Fixed the negative value check in io._BytesIO.seek().

This commit is contained in:
Alexandre Vassalotti 2008-05-08 01:39:38 +00:00
parent 10dfc1ee31
commit 8130f7c3c4
1 changed files with 1 additions and 1 deletions

View File

@ -831,9 +831,9 @@ class _BytesIO(BufferedIOBase):
except AttributeError as err:
raise TypeError("an integer is required") from err
if whence == 0:
self._pos = max(0, pos)
if pos < 0:
raise ValueError("negative seek position %r" % (pos,))
self._pos = max(0, pos)
elif whence == 1:
self._pos = max(0, self._pos + pos)
elif whence == 2: