summaryrefslogtreecommitdiff
path: root/util/stats
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-02-03 17:04:54 -0500
committerNathan Binkert <binkertn@umich.edu>2005-02-03 17:04:54 -0500
commit52403a5ddf1e02f53d0624254f41e27e3914df29 (patch)
tree8f3940b5cba764c2f9c2118b0ff3acd41c173597 /util/stats
parent936ad584022be7a4e89292c708cc624841198f62 (diff)
downloadgem5-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')
-rw-r--r--util/stats/info.py2
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):