Kaydet (Commit) f0c0ff6c authored tarafından Alexandre Vassalotti's avatar Alexandre Vassalotti

Removed redundant max() call.

Change suggested by Nick Coghlan.
üst 4e6531e7
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment