diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2018-11-26 12:04:48 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2018-11-28 07:30:40 +0000 |
commit | 7e713f133a62efdc9d3019aeeee15cce774087e2 (patch) | |
tree | 8b3aca5d3392460d3010c9c9f693df43a180e2a5 /src/vpp-api/python/vpp_papi/vpp_serializer.py | |
parent | 526ad04e013a24d685419e4ff0d7c5f03c3395f9 (diff) |
vpp_papi: Use new style classes.
Python2 defaults to old style classes to maintain compatability with python 2.1.
Moving to new style classes will ensure consistent behavior across interpreters.
Change-Id: I89493d608d1edb63989000c17a9566a97785a4aa
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'src/vpp-api/python/vpp_papi/vpp_serializer.py')
-rw-r--r-- | src/vpp-api/python/vpp_papi/vpp_serializer.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/vpp-api/python/vpp_papi/vpp_serializer.py b/src/vpp-api/python/vpp_papi/vpp_serializer.py index 8635ce0070c..bd0f73803da 100644 --- a/src/vpp-api/python/vpp_papi/vpp_serializer.py +++ b/src/vpp-api/python/vpp_papi/vpp_serializer.py @@ -27,7 +27,7 @@ from .vpp_format import VPPFormat logger = logging.getLogger(__name__) -class BaseTypes(): +class BaseTypes(object): def __init__(self, type, elements=0): base_types = {'u8': '>B', 'u16': '>H', @@ -72,7 +72,7 @@ def vpp_get_type(name): return None -class FixedList_u8(): +class FixedList_u8(object): def __init__(self, name, field_type, num): self.name = name self.num = num @@ -98,7 +98,7 @@ class FixedList_u8(): return self.packer.unpack(data, offset) -class FixedList(): +class FixedList(object): def __init__(self, name, field_type, num): self.num = num self.packer = types[field_type] @@ -125,7 +125,7 @@ class FixedList(): return result, total -class VLAList(): +class VLAList(object): def __init__(self, name, field_type, len_field_name, index): self.name = name self.index = index @@ -198,7 +198,7 @@ class VLAList_legacy(): return r, total -class VPPEnumType(): +class VPPEnumType(object): def __init__(self, name, msgdef): self.size = types['u32'].size e_hash = {} @@ -227,7 +227,7 @@ class VPPEnumType(): return self.enum(x), size -class VPPUnionType(): +class VPPUnionType(object): def __init__(self, name, msgdef): self.name = name self.size = 0 @@ -277,7 +277,7 @@ class VPPUnionType(): return self.tuple._make(r), maxsize -class VPPType(): +class VPPType(object): # Set everything up to be able to pack / unpack def __init__(self, name, msgdef): self.name = name |