Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b8bf163d
Commit
b8bf163d
authored
Feb 02, 1999
by
Just van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added some comments
parent
2e3f7bec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
Mac/Tools/IDE/BuildIDE.py
Mac/Tools/IDE/BuildIDE.py
+10
-1
No files found.
Mac/Tools/IDE/BuildIDE.py
View file @
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