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
b8bf163d
Kaydet (Commit)
b8bf163d
authored
Şub 02, 1999
tarafından
Just van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added some comments
üst
2e3f7bec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
BuildIDE.py
Mac/Tools/IDE/BuildIDE.py
+10
-1
No files found.
Mac/Tools/IDE/BuildIDE.py
Dosyayı görüntüle @
b8bf163d
"""Build a "big" applet for the IDE, and put it in the Python home
directory. It will contain all IDE-specific modules as PYC resources,
which reduces the startup time (especially on slower machines)."""
import
sys
import
os
import
buildtools
...
...
@@ -20,13 +24,18 @@ Res.UseResFile(targetref)
files
=
os
.
listdir
(
ide_home
)
files
=
filter
(
lambda
x
:
x
[
-
3
:]
==
'.py'
and
x
not
in
(
"BuildIDE.py"
,
"PythonIDE.py"
),
files
)
# skip this script and the main program
files
=
filter
(
lambda
x
:
x
[
-
3
:]
==
'.py'
and
x
not
in
(
"BuildIDE.py"
,
"PythonIDE.py"
),
files
)
# add the modules as PYC resources
for
name
in
files
:
print
"adding"
,
name
fullpath
=
os
.
path
.
join
(
ide_home
,
name
)
id
,
name
=
py_resource
.
frompyfile
(
fullpath
,
name
[:
-
3
],
preload
=
1
,
ispackage
=
0
)
# add W resources
wresref
=
Res
.
OpenResFile
(
os
.
path
.
join
(
ide_home
,
"Widgets.rsrc"
))
buildtools
.
copyres
(
wresref
,
targetref
,
[],
0
)
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