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
85bb6287
Kaydet (Commit)
85bb6287
authored
Tem 02, 2009
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cleaned up the bdist_dumb module
üst
d0ca4553
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
15 deletions
+4
-15
bdist_dumb.py
Lib/distutils/command/bdist_dumb.py
+4
-15
No files found.
Lib/distutils/command/bdist_dumb.py
Dosyayı görüntüle @
85bb6287
...
...
@@ -7,16 +7,17 @@ $exec_prefix)."""
__revision__
=
"$Id$"
import
os
from
distutils.core
import
Command
from
distutils.util
import
get_platform
from
distutils.dir_util
import
remove_tree
,
ensure_relative
from
distutils.errors
import
*
from
distutils.errors
import
DistutilsPlatformError
from
distutils.sysconfig
import
get_python_version
from
distutils
import
log
class
bdist_dumb
(
Command
):
description
=
"create a
\"
dumb
\"
built distribution"
description
=
'create a "dumb" built distribution'
user_options
=
[(
'bdist-dir='
,
'd'
,
"temporary directory for creating the distribution"
),
...
...
@@ -53,11 +54,7 @@ class bdist_dumb (Command):
self
.
skip_build
=
0
self
.
relative
=
0
# initialize_options()
def
finalize_options
(
self
):
def
finalize_options
(
self
):
if
self
.
bdist_dir
is
None
:
bdist_base
=
self
.
get_finalized_command
(
'bdist'
)
.
bdist_base
self
.
bdist_dir
=
os
.
path
.
join
(
bdist_base
,
'dumb'
)
...
...
@@ -74,11 +71,7 @@ class bdist_dumb (Command):
(
'dist_dir'
,
'dist_dir'
),
(
'plat_name'
,
'plat_name'
))
# finalize_options()
def
run
(
self
):
if
not
self
.
skip_build
:
self
.
run_command
(
'build'
)
...
...
@@ -127,7 +120,3 @@ class bdist_dumb (Command):
if
not
self
.
keep_temp
:
remove_tree
(
self
.
bdist_dir
,
dry_run
=
self
.
dry_run
)
# run()
# class bdist_dumb
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