Home | History | Annotate | Download | only in bugzilla

Lines Matching refs:patch

91         return [patch for patch in self.attachments(include_obsolete)
92 if patch.is_patch()]
95 return [patch for patch in self.patches() if patch.review() == "?"]
98 patches = [patch for patch in self.patches() if patch.review() == "+"]
103 return filter(lambda patch: patch.reviewer(), patches)
106 patches = [patch for patch in self.patches()
107 if patch.commit_queue() == "+"]
112 return filter(lambda patch: patch.committer(), patches)