projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d238b6b
)
__init__ should not return anything
author
Nathan Binkert
<binkertn@umich.edu>
Wed, 2 Nov 2005 17:14:26 +0000
(12:14 -0500)
committer
Nathan Binkert
<binkertn@umich.edu>
Wed, 2 Nov 2005 17:14:26 +0000
(12:14 -0500)
--HG--
extra : convert_revision :
fb46eee741f4899d76bcf927523fa151d002decf
python/m5/config.py
patch
|
blob
|
history
diff --git
a/python/m5/config.py
b/python/m5/config.py
index 33f3f584305cb001f6d9a908b6bdd3917f14d288..e1970e672f28ef6657fe0b8b27997c1b47d6566e 100644
(file)
--- a/
python/m5/config.py
+++ b/
python/m5/config.py
@@
-939,7
+939,6
@@
class CheckedInt(NumericParamValue):
elif isinstance(value, (int, long)):
self.value = long(value)
self._check()
- return self
class Int(CheckedInt): size = 32; unsigned = False
class Unsigned(CheckedInt): size = 32; unsigned = True
@@
-972,7
+971,6
@@
class MemorySize(CheckedInt):
else:
self.value = toMemorySize(value)
self._check()
- return self
class Addr(CheckedInt):
@@
-987,7
+985,6
@@
class Addr(CheckedInt):
except TypeError:
self.value = long(value)
self._check()
- return self
class AddrRange(Range):
type = Addr