/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
feeders_unittest.py | 53 def _mock_attachment(self, is_rollout, attach_date): 56 attachment.attach_date = lambda: attach_date 62 attachment1 = self._mock_attachment(is_rollout=False, attach_date=recent_date) 63 attachment2 = self._mock_attachment(is_rollout=False, attach_date=long_ago_date) 64 attachment3 = self._mock_attachment(is_rollout=True, attach_date=recent_date) 65 attachment4 = self._mock_attachment(is_rollout=True, attach_date=long_ago_date)
|
feeders.py | 76 # Sort first by is_rollout, then by attach_date. 81 return cmp(a.attach_date(), b.attach_date())
|
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/ |
attachment.py | 75 def attach_date(self): member in class:Attachment 76 return self._attachment_dictionary.get("attach_date")
|
bugzilla_unittest.py | 68 'attach_date': datetime.datetime(2009, 07, 29, 10, 23), 182 "attach_date": datetime.datetime(2009, 12, 27, 23, 51),
|
bugzilla.py | 306 attachment["attach_date"] = self._date_contents(element.find("date")) [all...] |
/external/webkit/Tools/ |
ChangeLog-2010-05-24 | 292 - Teach bugzilla how to parse attach_date for attachments. [all...] |