mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#
 | 
						|
# After running python setup.py install, run this program from the command
 | 
						|
# line like so:
 | 
						|
#
 | 
						|
# % python2.3 buildapp.py build
 | 
						|
#
 | 
						|
# A double-clickable IDLE application will be created in the build/ directory.
 | 
						|
#
 | 
						|
 | 
						|
from bundlebuilder import buildapp
 | 
						|
 | 
						|
buildapp(
 | 
						|
        name="IDLE",
 | 
						|
        mainprogram="idle.py",
 | 
						|
        argv_emulation=1,
 | 
						|
        iconfile="Icons/idle.icns",
 | 
						|
)
 |