mirror of
https://github.com/python/cpython.git
synced 2026-02-05 09:25:35 +00:00
#1030250: correctly pass the dry_run option to the mkpath() function.
This commit is contained in:
parent
ad9b5992e3
commit
240028cb77
2 changed files with 4 additions and 1 deletions
|
|
@ -1041,7 +1041,7 @@ def move_file (self, src, dst):
|
|||
return move_file (src, dst, dry_run=self.dry_run)
|
||||
|
||||
def mkpath (self, name, mode=0777):
|
||||
mkpath (name, mode, self.dry_run)
|
||||
mkpath (name, mode, dry_run=self.dry_run)
|
||||
|
||||
|
||||
# class CCompiler
|
||||
|
|
|
|||
|
|
@ -74,6 +74,9 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #1030250: Distutils created directories even when run with the
|
||||
--dry-run option.
|
||||
|
||||
- Issue #4483: _dbm module now builds on systems with gdbm & gdbm_compat
|
||||
libs.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue