Home | History | Annotate | Download | only in commands

Lines Matching refs:patches

66         # FIXME: This command is poorly named.  It's fetching the commit-queue list here.  The name implies it's fetching pending-commit (all r+'d patches).
73 name = "patches-in-commit-queue"
74 help_text = "List patches in the commit-queue"
77 patches = tool.bugs.queries.fetch_patches_from_commit_queue()
78 log("Patches in commit queue:")
79 for patch in patches:
84 name = "patches-to-commit-queue"
85 help_text = "Patches which should be added to the commit queue"
98 # We only need to worry about patches from contributers who are not yet committers.
105 patches = tool.bugs.queries.fetch_patches_from_pending_commit_list()
106 patches_needing_cq = filter(self._needs_commit_queue, patches)
118 name = "patches-to-review"
119 help_text = "List patches that are pending review"
123 log("Patches pending review:")