From 2a81f6266fac8ce3941aeb96a1c0156b3a34a0c5 Mon Sep 17 00:00:00 2001 From: Brian Crowell Date: Mon, 15 Oct 2012 21:52:31 -0500 Subject: [PATCH] py3k: sys.maxint renamed to sys.maxsize --- Scripts/explode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/explode.py b/Scripts/explode.py index 3ff96dd2c..d6c2cd935 100644 --- a/Scripts/explode.py +++ b/Scripts/explode.py @@ -36,7 +36,7 @@ class Interval: self.hilo.append((hi, lo)) if not self.hilo: - self.hilo = [(sys.maxint, 0)] + self.hilo = [(sys.maxsize, 0)] def __getitem__(self, index):