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
d98d25e2
Kaydet (Commit)
d98d25e2
authored
Eki 15, 2002
tarafından
Thomas Heller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Revert the previous checkin - it didn't work anyway.
üst
6e5680fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
bdist_wininst.py
Lib/distutils/command/bdist_wininst.py
+3
-4
No files found.
Lib/distutils/command/bdist_wininst.py
Dosyayı görüntüle @
d98d25e2
...
...
@@ -130,9 +130,8 @@ class bdist_wininst (Command):
# And make an archive relative to the root of the
# pseudo-installation tree.
from
tempfile
import
NamedTemporaryFile
arc
=
NamedTemporaryFile
(
".zip"
)
archive_basename
=
arc
.
name
[:
-
4
]
from
tempfile
import
mktemp
archive_basename
=
mktemp
()
fullname
=
self
.
distribution
.
get_fullname
()
arcname
=
self
.
make_archive
(
archive_basename
,
"zip"
,
root_dir
=
self
.
bdist_dir
)
...
...
@@ -140,7 +139,7 @@ class bdist_wininst (Command):
self
.
create_exe
(
arcname
,
fullname
,
self
.
bitmap
)
# remove the zip-file again
log
.
debug
(
"removing temporary file '
%
s'"
,
arcname
)
arc
.
close
(
)
os
.
remove
(
arcname
)
if
not
self
.
keep_temp
:
remove_tree
(
self
.
bdist_dir
,
dry_run
=
self
.
dry_run
)
...
...
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