summaryrefslogtreecommitdiff
path: root/src/arch/isa_parser.py
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2019-01-25 12:12:38 +0000
committerAndreas Sandberg <andreas.sandberg@arm.com>2019-02-12 17:36:12 +0000
commit5cd4248672e5cd62cfec4753bd6d6ce666694f1f (patch)
tree7b0379ee8f0ff44a76895ff50922becda6a16d40 /src/arch/isa_parser.py
parent5cf312eb5bec50ab2142ce4c7df05d673cd9a716 (diff)
downloadgem5-5cd4248672e5cd62cfec4753bd6d6ce666694f1f.tar.xz
python: Replace dict.has_key with 'key in dict'
Python 3 has removed dict.has_key in favour of 'key in dict'. Change-Id: I9852a5f57d672bea815308eb647a0ce45624fad5 Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-on: https://gem5-review.googlesource.com/c/15987 Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Diffstat (limited to 'src/arch/isa_parser.py')
-rwxr-xr-xsrc/arch/isa_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/isa_parser.py b/src/arch/isa_parser.py
index 16004c009..48bc23fa3 100755
--- a/src/arch/isa_parser.py
+++ b/src/arch/isa_parser.py
@@ -142,7 +142,7 @@ class Template(object):
del myDict['snippets']
snippetLabels = [l for l in labelRE.findall(template)
- if d.snippets.has_key(l)]
+ if l in d.snippets]
snippets = dict([(s, self.parser.mungeSnippet(d.snippets[s]))
for s in snippetLabels])