python3: avoid using sys.maxint
Since integers don't have limited size in Python 3, sys.maxint is gone. Replace its use by sys.maxsize, which is the closest approximation.
Loading
Please register or sign in to comment
Since integers don't have limited size in Python 3, sys.maxint is gone. Replace its use by sys.maxsize, which is the closest approximation.