Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
a4c93b68
Kaydet (Commit)
a4c93b68
authored
Şub 23, 2003
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix SF bug #691276, shutil.copytree documentation bug
Also use True/False instead of 1/0 for symlink flag.
üst
61fe64d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
shutil.py
Lib/shutil.py
+3
-3
No files found.
Lib/shutil.py
Dosyayı görüntüle @
a4c93b68
...
...
@@ -83,11 +83,11 @@ def copy2(src, dst):
copystat
(
src
,
dst
)
def
copytree
(
src
,
dst
,
symlinks
=
0
):
def
copytree
(
src
,
dst
,
symlinks
=
False
):
"""Recursively copy a directory tree using copy2().
The destination directory must not already exist.
Error are reported to standard output
.
If exception(s) occur, an Error is raised with a list of reasons
.
If the optional symlinks flag is true, symbolic links in the
source tree result in symbolic links in the destination tree; if
...
...
@@ -164,7 +164,7 @@ def move(src, dst):
os
.
rename
(
src
,
dst
)
except
OSError
:
if
os
.
path
.
isdir
(
src
):
copytree
(
src
,
dst
,
symlinks
=
1
)
copytree
(
src
,
dst
,
symlinks
=
True
)
rmtree
(
src
)
else
:
copy2
(
src
,
dst
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment