aboutsummaryrefslogtreecommitdiffstats
path: root/extras
diff options
context:
space:
mode:
authorTing Xu <ting.xu@intel.com>2023-07-03 08:08:33 +0000
committerTing Xu <ting.xu@intel.com>2023-07-04 06:45:17 +0000
commit61762c7aac99ca5f010e3d0de812180fd0d152e1 (patch)
treedd1d6ee9b70641e21346e0676f189d9997037d66 /extras
parent8aa47b7a76118a451e04549bf78bece1d49bf78d (diff)
packetforge: fix has_key invalid in python3
Python Dict attribute "has_key" was removed in Python3. Use "in" operation instead. Type: fix Signed-off-by: Ting Xu <ting.xu@intel.com> Change-Id: I7b63b0689e9970ca798921368c5616875f7d5682
Diffstat (limited to 'extras')
-rw-r--r--extras/packetforge/ParseGraph.py2
-rw-r--r--extras/packetforge/ProtocolHeader.py8
2 files changed, 5 insertions, 5 deletions
diff --git a/extras/packetforge/ParseGraph.py b/extras/packetforge/ParseGraph.py
index 188b0732ff6..31fc3039fed 100644
--- a/extras/packetforge/ParseGraph.py
+++ b/extras/packetforge/ParseGraph.py
@@ -91,7 +91,7 @@ class ParseGraph:
return None
def GetNode(self, name):
- if self.nodeDict.has_key(name):
+ if name in self.nodeDict:
return self.nodeDict[name]
return None
diff --git a/extras/packetforge/ProtocolHeader.py b/extras/packetforge/ProtocolHeader.py
index 272b6557460..398a52d3455 100644
--- a/extras/packetforge/ProtocolHeader.py
+++ b/extras/packetforge/ProtocolHeader.py
@@ -136,7 +136,7 @@ class ProtocolHeader:
key = exp[0:offset].strip()
shift = int(exp[offset + 2 :].strip())
- if self.fieldDict.has_key(key):
+ if key in self.fieldDict:
field = self.fieldDict[key]
_, u16 = ExpressionConverter.ToNum(field.Value)
if u16:
@@ -144,7 +144,7 @@ class ProtocolHeader:
else:
return 0
- if self.attributeDict.has_key(key):
+ if key in self.attributeDict:
attr = self.attributeDict[key]
_, u16 = ExpressionConverter.ToNum(attr.Value)
if u16:
@@ -201,14 +201,14 @@ class ProtocolHeader:
phf.UpdateValue(ExpressionConverter.IncreaseValue(phf.Value, size), True)
def getField(self, name):
- if not self.fieldDict.has_key(name):
+ if name not in self.fieldDict:
return None
field = self.fieldDict[name]
return field.Value
def getAttribute(self, name):
- if not self.attributeDict.has_key(name):
+ if name not in self.attributeDict:
return None
return self.attributeDict[name].Value