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
20417bcd
Commit
20417bcd
authored
Aug 05, 2002
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better output for errors, and some progress reports.
Handle the two modules with non-standard scanner module names.
parent
c4ff194b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
Mac/scripts/bgenall.py
Mac/scripts/bgenall.py
+12
-1
No files found.
Mac/scripts/bgenall.py
View file @
20417bcd
...
...
@@ -6,13 +6,24 @@ import string
def
bgenone
(
dirname
,
shortname
):
os
.
chdir
(
dirname
)
print
'%s:'
%
shortname
# Sigh, we don't want to lose CVS history, so two
# modules have funny names:
if
shortname
==
'carbonevt'
:
modulename
=
'CarbonEvtscan'
elif
shortname
==
'ibcarbon'
:
modulename
=
'IBCarbonscan'
else
:
modulename
=
shortname
+
'scan'
try
:
m
=
__import__
(
shortname
+
'scan'
)
m
=
__import__
(
modulename
)
except
:
print
"Error:"
,
shortname
,
sys
.
exc_info
()[
1
]
return
0
try
:
m
.
main
()
except
:
print
"Error:"
,
shortname
,
sys
.
exc_info
()[
1
]
return
0
return
1
...
...
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