我需要一些功能'apply_patch':
result_string = apply_patch('origin_file.txt', 'origin_file.txt.patch')
或一些命令(适用于 windows 和 linux):
if linux:
result_string = os.system('linux_patch --apply origin_file.txt origin_file.txt.patch')
elif windows:
result_string = os.system('windows_patch --apply origin_file.txt origin_file.txt.patch')
有用的信息:我使用 mercurial 作为版本控制系统