mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
8 lines
261 B
Python
8 lines
261 B
Python
"""macgenerate - Generate the out for macfreeze"""
|
|
|
|
def generate(program, 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
|