1 Star 0 Fork 30

huangjunjie/chromium_third_party_skia

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
add_codereview_message.py 1.68 KB
一键复制 编辑 原始数据 按行查看 历史
李想 提交于 2023-11-30 17:12 +08:00 . chromium 114 source init
#!/usr/bin/python2
# Copyright 2014 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Add message to codereview issue.
This script takes a codereview issue number as its argument and a (possibly
multi-line) message on stdin. It appends the message to the given issue.
Usage:
echo MESSAGE | %prog CODEREVIEW_ISSUE
or:
%prog CODEREVIEW_ISSUE <<EOF
MESSAGE
EOF
or:
%prog --help
"""
import optparse
import sys
import fix_pythonpath # pylint: disable=W0611
from common.py.utils import find_depot_tools # pylint: disable=W0611
import rietveld
RIETVELD_URL = 'https://codereview.chromium.org'
def add_codereview_message(issue, message):
"""Add a message to a given codereview.
Args:
codereview_url: (string) we will extract the issue number from
this url, or this could simply be the issue number.
message: (string) message to add.
"""
# Passing None for the email and auth_config will result in a prompt or
# reuse of existing cached credentials.
my_rietveld = rietveld.Rietveld(RIETVELD_URL, email=None, auth_config=None)
my_rietveld.add_comment(issue, message)
def main(argv):
"""main function; see module-level docstring and GetOptionParser help.
Args:
argv: sys.argv[1:]-type argument list.
"""
option_parser = optparse.OptionParser(usage=__doc__)
_, arguments = option_parser.parse_args(argv)
if len(arguments) > 1:
option_parser.error('Extra arguments.')
if len(arguments) != 1:
option_parser.error('Missing issue number.')
message = sys.stdin.read()
add_codereview_message(int(arguments[0]), message)
if __name__ == '__main__':
main(sys.argv[1:])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/huangjunjie31/chromium_third_party_skia.git
git@gitee.com:huangjunjie31/chromium_third_party_skia.git
huangjunjie31
chromium_third_party_skia
chromium_third_party_skia
114_trunk

搜索帮助