]> granicus.if.org Git - python/commit
Ignore .nfs* files in distutils (#7719).
authorÉric Araujo <aeric@mtlpy.org>
Sat, 8 Dec 2012 19:21:51 +0000 (14:21 -0500)
committerÉric Araujo <aeric@mtlpy.org>
Sat, 8 Dec 2012 19:21:51 +0000 (14:21 -0500)
commit3e4a3dcb23d849fa0ce5f5009e83606abaef15aa
tree41475986d38a6d9ecdcacb93a3205a164137501f
parent09974b4e9e8da3c9ba0469f4812e68cf9f700ffd
Ignore .nfs* files in distutils (#7719).

These files are created by some NFS clients a file is edited and removed
concurrently (see added link in doc for more info).  If such a file is
removed between distutils calls listdir and copy, it will get confused.
Other special files are ignored in sdist (namely VCS directories), but
this has to be filtered out earlier.
Doc/distutils/apiref.rst
Lib/distutils/dir_util.py
Lib/distutils/tests/test_dir_util.py
Lib/distutils/tests/test_sdist.py
Misc/NEWS