diff options
author | Georg Brandl <georg@python.org> | 2010-10-22 06:29:21 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-22 06:29:21 (GMT) |
commit | eb7e56922ef57b38c27d45cff016167fce468d14 (patch) | |
tree | 9a339ad7fe7d975aa7b9a496d85d52651c44850d /Lib/pstats.py | |
parent | 83938437cb74418ba45d00a99d02c6e095110c60 (diff) | |
download | cpython-eb7e56922ef57b38c27d45cff016167fce468d14.zip cpython-eb7e56922ef57b38c27d45cff016167fce468d14.tar.gz cpython-eb7e56922ef57b38c27d45cff016167fce468d14.tar.bz2 |
Make top_level attribute a set instead of a dict with None values.
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r-- | Lib/pstats.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py index 8744235..321d268 100644 --- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -89,7 +89,7 @@ class Stats: self.total_calls = 0 self.prim_calls = 0 self.max_name_len = 0 - self.top_level = {} + self.top_level = set() self.stats = {} self.sort_arg_dict = {} self.load_stats(arg) @@ -132,7 +132,7 @@ class Stats: self.prim_calls += cc self.total_tt += tt if ("jprofile", 0, "profiler") in callers: - self.top_level[func] = None + self.top_level.add(func) if len(func_std_string(func)) > self.max_name_len: self.max_name_len = len(func_std_string(func)) @@ -147,7 +147,7 @@ class Stats: self.prim_calls += item.prim_calls self.total_tt += item.total_tt for func in item.top_level: - self.top_level[func] = None + self.top_level.add(func) if self.max_name_len < item.max_name_len: self.max_name_len = item.max_name_len @@ -260,9 +260,9 @@ class Stats: else: newstats[newfunc] = (cc, nc, tt, ct, newcallers) old_top = self.top_level - self.top_level = new_top = {} + self.top_level = new_top = set() for func in old_top: - new_top[func_strip_path(func)] = None + new_top.add(func_strip_path(func)) self.max_name_len = max_name_len |