Lines Matching full:upstream
11 … = ("accepted", "pending", "inappropriate", "backport", "submitted", "denied", "inactive-upstream")
14 # Whether the patch has an Upstream-Status or not
16 # If the Upstream-Status tag is malformed in some way (string for bad bit)
18 # If the Upstream-Status value is unknown (boolean)
20 # The upstream status value (Pending, etc)
49 …status_re = re.compile(r"^[\t ]*(Upstream[-_ ]Status:?)[\t ]*([\w-]*)", re.IGNORECASE | re.MULTILI…
74 # Find the Upstream-Status tag
78 if value != "Upstream-Status:":
153 print("Missing Upstream-Status tag (%s)" % patch)
157 print("Malformed Upstream-Status '%s' (%s)" % (r.malformed_upstream_status, patch))
161 print("Unknown Upstream-Status value '%s' (%s)" % (r.upstream_status, patch))
179 Patches missing Upstream-Status: %s
180 Patches with malformed Upstream-Status: %s
229 row['malformed-upstream-status'] += 1