Andreas Sandberg has uploaded this change for review. (
https://gem5-review.googlesource.com/c/public/gem5/+/15989
Change subject: python: Replace deprecated repr syntax
......................................................................
python: Replace deprecated repr syntax
Change-Id: I5f9538cf2ca5ee17c51e7c5388d3aef363fcfa54
Signed-off-by: Andreas Sandberg <[email protected]>
---
M src/python/m5/util/multidict.py
M src/python/m5/util/sorteddict.py
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/python/m5/util/multidict.py
b/src/python/m5/util/multidict.py
index 58898a5..5cc13ee 100644
--- a/src/python/m5/util/multidict.py
+++ b/src/python/m5/util/multidict.py
@@ -40,7 +40,7 @@
return str(dict(self.items()))
def __repr__(self):
- return `dict(self.items())`
+ return repr(dict(list(self.items())))
def __contains__(self, key):
return key in self.local or key in self.parent
@@ -175,7 +175,7 @@
test2.setdefault('b', 'blah')
print(test1)
print(test2)
- print(`test2`)
+ print(repr(test2))
print(len(test2))
diff --git a/src/python/m5/util/sorteddict.py
b/src/python/m5/util/sorteddict.py
index de144a7..d85bef0 100644
--- a/src/python/m5/util/sorteddict.py
+++ b/src/python/m5/util/sorteddict.py
@@ -215,7 +215,7 @@
d['y'] = 26
display(d)
- print(`d`)
+ print(repr(d))
print(d.copy())
--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/15989
To unsubscribe, or for help writing mail filters, visit
https://gem5-review.googlesource.com/settings
Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-Change-Id: I5f9538cf2ca5ee17c51e7c5388d3aef363fcfa54
Gerrit-Change-Number: 15989
Gerrit-PatchSet: 1
Gerrit-Owner: Andreas Sandberg <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev