commit | 2bb96f593a067dafc7f02fef659ff22994b83399 | [log] [tgz] |
---|---|---|
author | Florent Xicluna <florent.xicluna@gmail.com> | Sun Oct 23 22:11:00 2011 +0200 |
committer | Florent Xicluna <florent.xicluna@gmail.com> | Sun Oct 23 22:11:00 2011 +0200 |
tree | b2b2acc64f5e4e6da3d98541544c72b2a439e98a | |
parent | 8d48b43ea9abe494527acea05dcd6b8d067278ea [diff] [blame] |
Cleanup code: remove int/long idioms and simplify a while statement.
diff --git a/Lib/xdrlib.py b/Lib/xdrlib.py index 4e48677..86e624f 100644 --- a/Lib/xdrlib.py +++ b/Lib/xdrlib.py
@@ -141,11 +141,7 @@ data = self.__buf[i:j] if len(data) < 4: raise EOFError - x = struct.unpack('>L', data)[0] - try: - return int(x) - except OverflowError: - return x + return struct.unpack('>L', data)[0] def unpack_int(self): i = self.__pos