Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我没有将补丁应用于 python 库的任何经验。difflib.py我从这个站点找到了一个补丁。我想将此补丁应用到标准difflib.py文件(实际上我不想修改标准文件)。我只想cdifflib.py在应用补丁后将其命名为新文件。有人可以建议我一种在本地应用补丁的简单方法。
difflib.py
cdifflib.py
复制一个新文件
cp difflib.py cdifflib.py
应用补丁
patch -p1 < patch_file
patch_file 是从补丁站点下载的