Lines Matching defs:str
47 def escape_description(str):
51 if str is None:
54 str = html.escape(str, False)
56 str = re.sub("@(?=\w)", "@<!-- -->", str)
58 str = re.sub("#(?=\d)", "#<!-- -->", str)
59 return str
64 def team_name(self) -> str:
67 def __init__(self, token: str, repo: str, issue_number: int, label_name: str):
109 def team_name(self) -> str:
112 def __init__(self, token: str, repo: str, pr_number: int, label_name: str):
215 def __init__(self, token: str, repo: str, pr_number: int):
247 def __init__(self, token: str, repo: str, pr_number: int, author: str):
304 def extract_commit_hash(arg: str):
332 token: str,
333 repo: str,
335 branch_repo_name: str,
336 branch_repo_token: str,
337 llvm_project_dir: str,
338 requested_by: str,
352 def token(self) -> str:
356 def repo_name(self) -> str:
364 def branch_repo_owner(self) -> str:
368 def branch_repo_name(self) -> str:
372 def branch_repo_token(self) -> str:
376 def llvm_project_dir(self) -> str:
380 def requested_by(self) -> str:
392 def push_url(self) -> str:
398 def branch_name(self) -> str:
402 def release_branch_for_issue(self) -> Optional[str]:
425 def make_ignore_comment(self, comment: str) -> str:
430 :param str comment: The comment to ignore
434 def issue_notify_no_milestone(self, comment: List[str]) -> None:
441 def action_url(self) -> str:
449 self, commit: str
464 self, branch: str
474 def get_main_commit(self, cherry_pick_sha: str) -> github.Commit.Commit:
508 def create_branch(self, commits: List[str]) -> bool:
541 self, repo: github.Repository.Repository, head: str
547 self, owner: str, repo_name: str, branch: str, commits: List[str]
631 def request_release_note(token: str, repo_name: str, pr_number: int):
658 "--token", type=str, required=True, help="GitHub authentication token"
662 type=str,
669 issue_subscriber_parser.add_argument("--label-name", type=str, required=True)
673 pr_subscriber_parser.add_argument("--label-name", type=str, required=True)
681 pr_buildbot_information_parser.add_argument("--author", type=str, required=True)
686 type=str,
695 type=str,
700 type=str,
706 type=str,
717 type=str,