mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
9 lines
259 B
Python
9 lines
259 B
Python
"""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
|