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
4b49823e
Kaydet (Commit)
4b49823e
authored
Mar 25, 2004
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
make sure the default manifest generation includes files identified as
scripts closes SF bug 796042
üst
91e83e20
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
build_scripts.py
Lib/distutils/command/build_scripts.py
+2
-0
sdist.py
Lib/distutils/command/sdist.py
+4
-0
No files found.
Lib/distutils/command/build_scripts.py
Dosyayı görüntüle @
4b49823e
...
@@ -41,6 +41,8 @@ class build_scripts (Command):
...
@@ -41,6 +41,8 @@ class build_scripts (Command):
(
'force'
,
'force'
))
(
'force'
,
'force'
))
self
.
scripts
=
self
.
distribution
.
scripts
self
.
scripts
=
self
.
distribution
.
scripts
def
get_source_files
(
self
):
return
self
.
scripts
def
run
(
self
):
def
run
(
self
):
if
not
self
.
scripts
:
if
not
self
.
scripts
:
...
...
Lib/distutils/command/sdist.py
Dosyayı görüntüle @
4b49823e
...
@@ -304,6 +304,10 @@ class sdist (Command):
...
@@ -304,6 +304,10 @@ class sdist (Command):
build_clib
=
self
.
get_finalized_command
(
'build_clib'
)
build_clib
=
self
.
get_finalized_command
(
'build_clib'
)
self
.
filelist
.
extend
(
build_clib
.
get_source_files
())
self
.
filelist
.
extend
(
build_clib
.
get_source_files
())
if
self
.
distribution
.
has_scripts
():
build_scripts
=
self
.
get_finalized_command
(
'build_scripts'
)
self
.
filelist
.
extend
(
build_scripts
.
get_source_files
())
# add_defaults ()
# add_defaults ()
...
...
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