Fix ResourceWarning: unclosed file in setup.py

Also prevent potential identical warning in `plat_other.py`.
This commit is contained in:
Mickaël Schoentgen 2020-12-01 08:43:12 +01:00
부모 49bc438546
커밋 cd8d9fb95e
2개의 변경된 파일4개의 추가작업 그리고 6개의 파일을 삭제

파일 보기

@ -112,9 +112,8 @@ def trash_move(src, dst, topdir=None):
check_create(infopath)
os.rename(src, op.join(filespath, destname))
f = open(op.join(infopath, destname + INFO_SUFFIX), "w")
f.write(info_for(src, topdir))
f.close()
with open(op.join(infopath, destname + INFO_SUFFIX), "w") as f:
f.write(info_for(src, topdir))
def find_mount_point(path):

파일 보기

@ -17,9 +17,8 @@ CLASSIFIERS = [
"Topic :: Desktop Environment :: File Managers",
]
LONG_DESCRIPTION = (
open("README.rst", "rt").read() + "\n\n" + open("CHANGES.rst", "rt").read()
)
with open("README.rst", "rt") as f1, open("CHANGES.rst", "rt") as f2:
LONG_DESCRIPTION = f1.read() + "\n\n" + f2.read()
setup(
name="Send2Trash",