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
00b41fc8
Kaydet (Commit)
00b41fc8
authored
Mar 07, 2012
tarafından
Éric Araujo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.2
üst
7f4fdb26
a420c820
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
10 deletions
+1
-10
bdist_msi.py
Lib/distutils/command/bdist_msi.py
+1
-1
test_bdist_msi.py
Lib/distutils/tests/test_bdist_msi.py
+0
-9
No files found.
Lib/distutils/command/bdist_msi.py
Dosyayı görüntüle @
00b41fc8
...
@@ -260,7 +260,7 @@ class bdist_msi(Command):
...
@@ -260,7 +260,7 @@ class bdist_msi(Command):
self
.
db
.
Commit
()
self
.
db
.
Commit
()
if
hasattr
(
self
.
distribution
,
'dist_files'
):
if
hasattr
(
self
.
distribution
,
'dist_files'
):
tup
=
'bdist_msi'
,
self
.
target_version
or
'any'
,
installer_
name
tup
=
'bdist_msi'
,
self
.
target_version
or
'any'
,
full
name
self
.
distribution
.
dist_files
.
append
(
tup
)
self
.
distribution
.
dist_files
.
append
(
tup
)
if
not
self
.
keep_temp
:
if
not
self
.
keep_temp
:
...
...
Lib/distutils/tests/test_bdist_msi.py
Dosyayı görüntüle @
00b41fc8
"""Tests for distutils.command.bdist_msi."""
"""Tests for distutils.command.bdist_msi."""
import
os
import
sys
import
sys
import
unittest
import
unittest
from
test.support
import
run_unittest
from
test.support
import
run_unittest
...
@@ -17,14 +16,6 @@ class BDistMSITestCase(support.TempdirManager,
...
@@ -17,14 +16,6 @@ class BDistMSITestCase(support.TempdirManager,
project_dir
,
dist
=
self
.
create_dist
()
project_dir
,
dist
=
self
.
create_dist
()
cmd
=
bdist_msi
(
dist
)
cmd
=
bdist_msi
(
dist
)
cmd
.
ensure_finalized
()
cmd
.
ensure_finalized
()
cmd
.
run
()
bdists
=
os
.
listdir
(
os
.
path
.
join
(
project_dir
,
'dist'
))
self
.
assertEqual
(
bdists
,
[
'foo-0.1.msi'
])
# bug #13719: upload ignores bdist_msi files
self
.
assertEqual
(
dist
.
dist_files
,
[(
'bdist_msi'
,
'any'
,
'dist/foo-0.1.msi'
)])
def
test_suite
():
def
test_suite
():
...
...
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