From 2dae793a674394b29d6aedc47fd72bed8f2b1fa6 Mon Sep 17 00:00:00 2001 From: wernerfb Date: Sun, 28 Feb 2016 09:06:07 +0100 Subject: [PATCH] - correct as per Robin's comments --- wx/lib/intctrl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wx/lib/intctrl.py b/wx/lib/intctrl.py index 542a88fb..8da7fa56 100644 --- a/wx/lib/intctrl.py +++ b/wx/lib/intctrl.py @@ -45,8 +45,8 @@ import wx.lib.six as six #---------------------------------------------------------------------------- -MAXSIZE = sys.maxsize # (constants should be in upper case) -MINSIXE = -sys.maxsize-1 +MAXSIZE = six.MAXSIZE # (constants should be in upper case) +MINSIZE = -six.MAXSIZE-1 if six.PY2: LONGTYPE = long