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
e30b7a91
Kaydet (Commit)
e30b7a91
authored
May 13, 2000
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added 'get_inputs()' methods, needed by the "install" command's
'get_inputs()'.
üst
ba0506b3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
install_data.py
Lib/distutils/command/install_data.py
+3
-0
install_scripts.py
Lib/distutils/command/install_scripts.py
+3
-0
No files found.
Lib/distutils/command/install_data.py
Dosyayı görüntüle @
e30b7a91
...
...
@@ -18,3 +18,6 @@ class install_data (install_misc):
def
run
(
self
):
self
.
_copy_files
(
self
.
distribution
.
data
)
def
get_inputs
(
self
):
return
self
.
distribution
.
data
or
[]
Lib/distutils/command/install_scripts.py
Dosyayı görüntüle @
e30b7a91
...
...
@@ -32,4 +32,7 @@ class install_scripts(install_misc):
self
.
announce
(
"changing mode of
%
s to
%
o"
%
(
file
,
mode
))
os
.
chmod
(
file
,
mode
)
def
get_inputs
(
self
):
return
self
.
distribution
.
scripts
or
[]
# class install_scripts
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