mirror of
https://github.com/python/cpython.git
synced 2025-09-13 04:08:37 +00:00
8 lines
259 B
Python
8 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
|