mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Removed remnants of os.path.walk().
This commit is contained in:
parent
14a767d4f4
commit
4e6531e7de
8 changed files with 8 additions and 8 deletions
2
setup.py
2
setup.py
|
@ -1574,7 +1574,7 @@ class PyBuildInstallLib(install_lib):
|
|||
|
||||
def set_dir_modes(self, dirname, mode):
|
||||
if not self.is_chmod_supported(): return
|
||||
os.path.walk(dirname, self.set_dir_modes_visitor, mode)
|
||||
os.walk(dirname, self.set_dir_modes_visitor, mode)
|
||||
|
||||
def set_dir_modes_visitor(self, mode, dirname, names):
|
||||
if os.path.islink(dirname): return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue