関数「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 を使用しています