代码拉取完成,页面将自动刷新
import os
import subprocess
def get_pr_files():
PR_LIST_FILE = 'pr_list'
DIFF_INFO_FILE = 'diff_info'
res = []
if os.path.exists(PR_LIST_FILE):
with open(PR_LIST_FILE, 'r') as f:
for line in f.readlines():
res.append(line.split('\n')[0])
else:
subprocess.call('git show --stat > {}'.format(DIFF_INFO_FILE), shell=True)
with open(DIFF_INFO_FILE, 'r') as f:
diff_ctt = f.read()
slices = diff_ctt.split('\n\n')[2]
for slice in slices.split('\n'):
if '|' in slice:
if '=>' not in slice.split('|')[0].strip():
res.append(slice.split('|')[0].strip())
with open(PR_LIST_FILE, 'w') as f:
for i in res:
f.write(i + '\n')
return res
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。