mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
	
		
			378 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
	
		
			378 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | import Disk_Copy | ||
|  | import macfs | ||
|  | import sys | ||
|  | 
 | ||
|  | talker = Disk_Copy.Disk_Copy(start=1) | ||
|  | talker.activate() | ||
|  | filespec = macfs.FSSpec('my disk image.img') | ||
|  | try: | ||
|  | 	objref = talker.create('my disk image', saving_as=filespec, leave_image_mounted=1) | ||
|  | except Disk_Copy.Error, arg: | ||
|  | 	print "ERROR: my disk image:", arg | ||
|  | else: | ||
|  | 	print 'objref=', objref | ||
|  | print 'Type return to exit-' | ||
|  | sys.stdin.readline() |