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
0d4a8531
Kaydet (Commit)
0d4a8531
authored
Eyl 30, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Changed 'copy_file()' so it returns a tuple (dest_name, copied) -- hopefully,
this will please everyone (as if that's possible).
üst
ec84c21c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
file_util.py
Lib/distutils/file_util.py
+7
-6
No files found.
Lib/distutils/file_util.py
Dosyayı görüntüle @
0d4a8531
...
...
@@ -95,8 +95,9 @@ def copy_file (src, dst,
Under Mac OS, uses the native file copy function in macostools; on
other systems, uses '_copy_file_contents()' to copy file contents.
Return the name of the destination file, whether it was actually copied
or not.
Return a tuple (dest_name, copied): 'dest_name' is the actual name of
the output file, and 'copied' is true if the file was copied (or would
have been copied, if 'dry_run' true).
"""
# XXX if the destination file already exists, we clobber it if
# copying, but blow up if linking. Hmmm. And I don't know what
...
...
@@ -121,7 +122,7 @@ def copy_file (src, dst,
if
update
and
not
newer
(
src
,
dst
):
if
verbose
:
print
"not copying
%
s (output up-to-date)"
%
src
return
dst
return
(
dst
,
0
)
try
:
action
=
_copy_action
[
link
]
...
...
@@ -135,9 +136,9 @@ def copy_file (src, dst,
print
"
%
s
%
s ->
%
s"
%
(
action
,
src
,
dst
)
if
dry_run
:
return
dst
return
(
dst
,
1
)
# On
a Mac
, use the native file copy routine
# On
Mac OS
, use the native file copy routine
if
os
.
name
==
'mac'
:
import
macostools
try
:
...
...
@@ -169,7 +170,7 @@ def copy_file (src, dst,
if
preserve_mode
:
os
.
chmod
(
dst
,
S_IMODE
(
st
[
ST_MODE
]))
return
dst
return
(
dst
,
1
)
# copy_file ()
...
...
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