Lines Matching refs:history
51 self.history = self.get_history()
85 history = {}
89 history = json.load(json_file)
94 return history
107 if not self.history:
109 latest = self.history.get(self.detect_key, {})
127 self.history.update(latest_bug)
128 num_history = len(self.history)
130 sorted_history = sorted(self.history.items(),
132 self.history = dict(
136 json.dump(self.history, outfile, indent=0)