finish removing six

This commit is contained in:
Alexandre Detiste
2024-03-22 08:15:00 +01:00
committed by Scott Talbert
parent 323e78c085
commit 66a9320917
8 changed files with 18 additions and 21 deletions

View File

@@ -41,12 +41,11 @@ import string
import types
import wx
import six
#----------------------------------------------------------------------------
MAXSIZE = six.MAXSIZE # (constants should be in upper case)
MINSIZE = -six.MAXSIZE-1
MAXSIZE = sys.maxsize # (constants should be in upper case)
MINSIZE = -sys.MAXSIZE-1
LONGTYPE = int
#----------------------------------------------------------------------------