repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added 'description' class attribute to every command class (to help the
[python/dscho.git]
/
Mac
/
Tools
/
macfreeze
/
macgen_info.py
blob
9ec6aa03d49152fb9946e12d9900f9e8fc740f7a
1
"""macgen_info - Generate informational output"""
2
3
def
generate
(
output
,
module_dict
):
4
for
name
in
module_dict
.
keys
():
5
print
'Include
%-
20s
\t
'
%
name
,
6
module
=
module_dict
[
name
]
7
print
module
.
gettype
(),
'
\t
'
,
`module`
8
return
0