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
39abba46
Kaydet (Commit)
39abba46
authored
Şub 09, 2015
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #17896: Update msi.py to new externals dir.
üst
833d1925
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
msi.py
Tools/msi/msi.py
+4
-4
No files found.
Tools/msi/msi.py
Dosyayı görüntüle @
39abba46
...
@@ -929,9 +929,9 @@ def generate_license():
...
@@ -929,9 +929,9 @@ def generate_license():
(
"Tk"
,
"tk8*"
,
"license.terms"
),
(
"Tk"
,
"tk8*"
,
"license.terms"
),
(
"Tix"
,
"tix-*"
,
"license.terms"
)):
(
"Tix"
,
"tix-*"
,
"license.terms"
)):
out
.
write
(
"
\n
This copy of Python includes a copy of
%
s, which is licensed under the following terms:
\n\n
"
%
name
)
out
.
write
(
"
\n
This copy of Python includes a copy of
%
s, which is licensed under the following terms:
\n\n
"
%
name
)
dirs
=
glob
.
glob
(
srcdir
+
"/
..
/"
+
pat
)
dirs
=
glob
.
glob
(
srcdir
+
"/
externals
/"
+
pat
)
if
not
dirs
:
if
not
dirs
:
raise
ValueError
,
"Could not find "
+
srcdir
+
"/
..
/"
+
pat
raise
ValueError
,
"Could not find "
+
srcdir
+
"/
externals
/"
+
pat
if
len
(
dirs
)
>
2
and
not
snapshot
:
if
len
(
dirs
)
>
2
and
not
snapshot
:
raise
ValueError
,
"Multiple copies of "
+
pat
raise
ValueError
,
"Multiple copies of "
+
pat
dir
=
dirs
[
0
]
dir
=
dirs
[
0
]
...
@@ -1115,7 +1115,7 @@ def add_files(db):
...
@@ -1115,7 +1115,7 @@ def add_files(db):
lib
.
start_component
(
"TkDLLs"
,
tcltk
)
lib
.
start_component
(
"TkDLLs"
,
tcltk
)
lib
.
add_file
(
"_tkinter.pyd"
)
lib
.
add_file
(
"_tkinter.pyd"
)
dlls
.
append
(
"_tkinter.pyd"
)
dlls
.
append
(
"_tkinter.pyd"
)
tcldir
=
os
.
path
.
normpath
(
srcdir
+
(
"/
..
/tcltk
%
s/bin"
%
tclsuffix
))
tcldir
=
os
.
path
.
normpath
(
srcdir
+
(
"/
externals
/tcltk
%
s/bin"
%
tclsuffix
))
for
f
in
glob
.
glob1
(
tcldir
,
"*.dll"
):
for
f
in
glob
.
glob1
(
tcldir
,
"*.dll"
):
lib
.
add_file
(
f
,
src
=
os
.
path
.
join
(
tcldir
,
f
))
lib
.
add_file
(
f
,
src
=
os
.
path
.
join
(
tcldir
,
f
))
# check whether there are any unknown extensions
# check whether there are any unknown extensions
...
@@ -1140,7 +1140,7 @@ def add_files(db):
...
@@ -1140,7 +1140,7 @@ def add_files(db):
lib
.
add_file
(
'libpython
%
s
%
s.a'
%
(
major
,
minor
))
lib
.
add_file
(
'libpython
%
s
%
s.a'
%
(
major
,
minor
))
if
have_tcl
:
if
have_tcl
:
# Add Tcl/Tk
# Add Tcl/Tk
tcldirs
=
[(
root
,
'
..
/tcltk
%
s/lib'
%
tclsuffix
,
'tcl'
)]
tcldirs
=
[(
root
,
'
externals
/tcltk
%
s/lib'
%
tclsuffix
,
'tcl'
)]
tcltk
.
set_current
()
tcltk
.
set_current
()
while
tcldirs
:
while
tcldirs
:
parent
,
phys
,
dir
=
tcldirs
.
pop
()
parent
,
phys
,
dir
=
tcldirs
.
pop
()
...
...
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