diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-02-03 17:04:54 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-02-03 17:04:54 -0500 |
commit | 52403a5ddf1e02f53d0624254f41e27e3914df29 (patch) | |
tree | 8f3940b5cba764c2f9c2118b0ff3acd41c173597 /util/stats/info.py | |
parent | 936ad584022be7a4e89292c708cc624841198f62 (diff) | |
download | gem5-52403a5ddf1e02f53d0624254f41e27e3914df29.tar.xz |
get rid of defined and just access the env dict directly
get rid of the alias for true to True and false to False to keep
consistent python syntax.
util/stats/info.py:
Fix typo
--HG--
extra : convert_revision : e69588a8de52424e043315e70008ca3a3ede7d5b
Diffstat (limited to 'util/stats/info.py')
-rw-r--r-- | util/stats/info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/stats/info.py b/util/stats/info.py index fb46a2d55..01d7bdb0f 100644 --- a/util/stats/info.py +++ b/util/stats/info.py @@ -324,7 +324,7 @@ class Vector(Statistic,FormulaStat): def __eq__(self, other): if issequence(self.value) != issequence(other.value): - return false + return False if issequence(self.value): if len(self.value) != len(other.value): |