mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	 2398d578a3
			
		
	
	
		2398d578a3
		
	
	
	
	
		
			
			specialized for Mac OS X. 2. buildapp.py - a new file for building an application icon for IDLE on Mac OS X. See INSTALL.txt
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			317 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			317 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,
 | |
| )
 |