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
c4eb84ac
Kaydet (Commit)
c4eb84ac
authored
Tem 05, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added --dist-dir option to control where output archive(s) go.
üst
040dc0b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
bdist_dumb.py
Lib/distutils/command/bdist_dumb.py
+7
-1
No files found.
Lib/distutils/command/bdist_dumb.py
Dosyayı görüntüle @
c4eb84ac
...
...
@@ -24,6 +24,8 @@ class bdist_dumb (Command):
(
'keep-tree'
,
'k'
,
"keep the pseudo-installation tree around after "
+
"creating the distribution archive"
),
(
'dist-dir='
,
'd'
,
"directory to put final built distributions in"
),
]
default_format
=
{
'posix'
:
'gztar'
,
...
...
@@ -34,6 +36,7 @@ class bdist_dumb (Command):
self
.
bdist_dir
=
None
self
.
format
=
None
self
.
keep_tree
=
0
self
.
dist_dir
=
None
# initialize_options()
...
...
@@ -51,6 +54,8 @@ class bdist_dumb (Command):
(
"don't know how to create dumb built distributions "
+
"on platform
%
s"
)
%
os
.
name
self
.
set_undefined_options
(
'bdist'
,
(
'dist_dir'
,
'dist_dir'
))
# finalize_options()
...
...
@@ -71,7 +76,8 @@ class bdist_dumb (Command):
get_platform
())
print
"self.bdist_dir =
%
s"
%
self
.
bdist_dir
print
"self.format =
%
s"
%
self
.
format
self
.
make_archive
(
archive_basename
,
self
.
format
,
self
.
make_archive
(
os
.
path
.
join
(
self
.
dist_dir
,
archive_basename
),
self
.
format
,
root_dir
=
self
.
bdist_dir
)
if
not
self
.
keep_tree
:
...
...
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