summaryrefslogtreecommitdiff
path: root/Mac/Tools/macfreeze/macgen_info.py
blob: 2d984c1ddddb32c02434e1f8c1b6acaaa70a66c4 (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