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
e564278b
Kaydet (Commit)
e564278b
authored
Eyl 30, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Expect a tuple (dest_name, copied) from 'copy_file()'.
üst
ff50ad53
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
install_data.py
Lib/distutils/command/install_data.py
+2
-2
install_headers.py
Lib/distutils/command/install_headers.py
+1
-1
No files found.
Lib/distutils/command/install_data.py
Dosyayı görüntüle @
e564278b
...
...
@@ -52,7 +52,7 @@ class install_data (Command):
self
.
warn
(
"setup script did not provide a directory for "
"'
%
s' -- installing right in '
%
s'"
%
(
f
,
self
.
install_dir
))
out
=
self
.
copy_file
(
f
,
self
.
install_dir
)
(
out
,
_
)
=
self
.
copy_file
(
f
,
self
.
install_dir
)
self
.
outfiles
.
append
(
out
)
else
:
# it's a tuple with path to install to and a list of files
...
...
@@ -63,7 +63,7 @@ class install_data (Command):
dir
=
change_root
(
self
.
root
,
dir
)
self
.
mkpath
(
dir
)
for
data
in
f
[
1
]:
out
=
self
.
copy_file
(
data
,
dir
)
(
out
,
_
)
=
self
.
copy_file
(
data
,
dir
)
self
.
outfiles
.
append
(
out
)
def
get_inputs
(
self
):
...
...
Lib/distutils/command/install_headers.py
Dosyayı görüntüle @
e564278b
...
...
@@ -41,7 +41,7 @@ class install_headers (Command):
self
.
mkpath
(
self
.
install_dir
)
for
header
in
headers
:
out
=
self
.
copy_file
(
header
,
self
.
install_dir
)
(
out
,
_
)
=
self
.
copy_file
(
header
,
self
.
install_dir
)
self
.
outfiles
.
append
(
out
)
def
get_inputs
(
self
):
...
...
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