summaryrefslogtreecommitdiffstats
path: root/ipalib/parameters.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2015-08-12 12:07:52 +0200
committerJan Cholasta <jcholast@redhat.com>2015-09-01 11:42:01 +0200
commitfbacc26a6a8b92f4b3570c411b186ab86cbcc1b1 (patch)
tree0216c07e276d4441e834a964516d2880858d4650 /ipalib/parameters.py
parentc27cb295a586cdc1f1cc9b933829db471e5100ed (diff)
downloadfreeipa-fbacc26a6a8b92f4b3570c411b186ab86cbcc1b1.tar.gz
freeipa-fbacc26a6a8b92f4b3570c411b186ab86cbcc1b1.tar.xz
freeipa-fbacc26a6a8b92f4b3570c411b186ab86cbcc1b1.zip
Use six.integer_types instead of (long, int)
Reviewed-By: Christian Heimes <cheimes@redhat.com> Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipalib/parameters.py')
-rw-r--r--ipalib/parameters.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/ipalib/parameters.py b/ipalib/parameters.py
index 175adefb8..b81e515c3 100644
--- a/ipalib/parameters.py
+++ b/ipalib/parameters.py
@@ -1031,7 +1031,7 @@ class Number(Param):
"""
if type(value) in self.allowed_types:
return value
- if type(value) in (unicode, int, long, float):
+ if type(value) in (unicode, float) + six.integer_types:
try:
return self.type(value)
except ValueError:
@@ -1050,12 +1050,12 @@ class Int(Number):
"""
type = int
- allowed_types = int, long
+ allowed_types = six.integer_types
type_error = _('must be an integer')
kwargs = Param.kwargs + (
- ('minvalue', (int, long), int(MININT)),
- ('maxvalue', (int, long), int(MAXINT)),
+ ('minvalue', six.integer_types, int(MININT)),
+ ('maxvalue', six.integer_types, int(MAXINT)),
)
@staticmethod
@@ -1097,7 +1097,7 @@ class Int(Number):
"""
Check min constraint.
"""
- assert type(value) in (int, long)
+ assert type(value) in six.integer_types
if value < self.minvalue:
return _('must be at least %(minvalue)d') % dict(
minvalue=self.minvalue,
@@ -1107,7 +1107,7 @@ class Int(Number):
"""
Check max constraint.
"""
- assert type(value) in (int, long)
+ assert type(value) in six.integer_types
if value > self.maxvalue:
return _('can be at most %(maxvalue)d') % dict(
maxvalue=self.maxvalue,
@@ -1413,7 +1413,7 @@ class Str(Data):
"""
if type(value) in self.allowed_types:
return value
- if type(value) in (int, long, float, decimal.Decimal):
+ if type(value) in (float, decimal.Decimal) + six.integer_types:
return self.type(value)
if type(value) in (tuple, list):
raise ConversionError(name=self.name, index=index,
@@ -1567,7 +1567,7 @@ class IntEnum(Enum):
"""
type = int
- allowed_types = int, long
+ allowed_types = six.integer_types
type_error = Int.type_error
def _convert_scalar(self, value, index=None):