mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
70a6b49821
From SF patch #852334.
9 lines
237 B
Python
9 lines
237 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
|