mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Removed redundant max() call.
Change suggested by Nick Coghlan.
This commit is contained in:
parent
4e6531e7de
commit
f0c0ff6ce4
1 changed files with 1 additions and 1 deletions
|
@ -833,7 +833,7 @@ class _BytesIO(BufferedIOBase):
|
|||
if whence == 0:
|
||||
if pos < 0:
|
||||
raise ValueError("negative seek position %r" % (pos,))
|
||||
self._pos = max(0, pos)
|
||||
self._pos = pos
|
||||
elif whence == 1:
|
||||
self._pos = max(0, self._pos + pos)
|
||||
elif whence == 2:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue