summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/macfreeze/macgen_info.py
blob: d2edb9254c76ad0fb22bfd3732cd3fe7a7c2d870 (plain)
1
2
3
4
5
6
7
8
"""macgen_info - Generate informational output"""

def generate(output, module_dict):
    for name in module_dict.keys():
        print 'Include %-20s\t'%name,
        module = module_dict[name]
        print module.gettype(), '\t', repr(module)
    return 0