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
b24afe19
Kaydet (Commit)
b24afe19
authored
Eyl 29, 1999
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added 'list_only' option (and modified 'run()' to respect it).
üst
274ad9dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
dist.py
Lib/distutils/command/dist.py
+9
-1
No files found.
Lib/distutils/command/dist.py
Dosyayı görüntüle @
b24afe19
...
...
@@ -133,6 +133,8 @@ class Dist (Command):
"formats for source distribution (tar, ztar, gztar, or zip)"
),
(
'manifest='
,
'm'
,
"name of manifest file"
),
(
'list-only'
,
'l'
,
"just list files that would be distributed"
),
]
default_format
=
{
'posix'
:
'gztar'
,
...
...
@@ -144,6 +146,7 @@ class Dist (Command):
def
set_default_options
(
self
):
self
.
formats
=
None
self
.
manifest
=
None
self
.
list_only
=
0
def
set_final_options
(
self
):
...
...
@@ -169,7 +172,12 @@ class Dist (Command):
self
.
find_defaults
()
self
.
read_manifest
()
self
.
make_distribution
()
if
self
.
list_only
:
for
f
in
self
.
files
:
print
f
else
:
self
.
make_distribution
()
def
check_metadata
(
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