55 cache = open(self.timingCache, 'rb') |
55 cache = open(self.timingCache, 'rb') |
56 timings = marshal.load(cache) |
56 timings = marshal.load(cache) |
57 cache.close() |
57 cache.close() |
58 if isinstance(timings, type.DictType): |
58 if isinstance(timings, type.DictType): |
59 self.timings = timings |
59 self.timings = timings |
60 except: |
60 except Exception: |
61 pass |
61 pass |
62 |
62 |
63 def save(self): |
63 def save(self): |
64 """ |
64 """ |
65 Public method to store the collected profile data. |
65 Public method to store the collected profile data. |