mirror of
https://github.com/python/cpython.git
synced 2026-06-01 17:19:45 -04:00
70a6b49821
From SF patch #852334.
9 lines
235 B
Python
9 lines
235 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
|