mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	
		
			
	
	
		
			9 lines
		
	
	
	
		
			231 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
	
		
			231 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', `module` | ||
|  | 	return 0 |