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
3008b04e
Commit
3008b04e
authored
Jan 21, 1999
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed warnings for packages (Just implemented support for freezing
them, so the warning is obsolete).
parent
43278f01
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Mac/Tools/macfreeze/macgen_rsrc.py
Mac/Tools/macfreeze/macgen_rsrc.py
+1
-1
Mac/Tools/macfreeze/macgen_src.py
Mac/Tools/macfreeze/macgen_src.py
+1
-1
No files found.
Mac/Tools/macfreeze/macgen_rsrc.py
View file @
3008b04e
...
...
@@ -30,7 +30,7 @@ def generate(output, module_dict, debug=0, preload=1):
def
warnings
(
module_dict
):
problems
=
0
for
name
,
module
in
module_dict
.
items
():
if
module
.
gettype
()
not
in
(
'builtin'
,
'module'
):
if
module
.
gettype
()
not
in
(
'builtin'
,
'module'
,
'package'
):
problems
=
problems
+
1
print
'Warning: %s not included: %s %s'
%
(
name
,
module
.
gettype
(),
module
)
return
problems
...
...
Mac/Tools/macfreeze/macgen_src.py
View file @
3008b04e
...
...
@@ -103,7 +103,7 @@ def generate(output, module_dict, debug=0):
def
warnings
(
module_dict
):
problems
=
0
for
name
,
module
in
module_dict
.
items
():
if
module
.
gettype
()
not
in
(
'builtin'
,
'module'
,
'dynamic'
):
if
module
.
gettype
()
not
in
(
'builtin'
,
'module'
,
'dynamic'
,
'package'
):
problems
=
problems
+
1
print
'Warning: %s not included: %s %s'
%
(
name
,
module
.
gettype
(),
module
)
return
problems
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