[Idle-dev] CVS: idle macosx_main.py,1.7,1.8

Tony Lownds tonylownds@users.sourceforge.net
Tue, 31 Dec 2002 10:22:40 -0800


Update of /cvsroot/idlefork/idle
In directory sc8-pr-cvs1:/tmp/cvs-serv6225

Modified Files:
	macosx_main.py 
Log Message:
Don't let the docstring end up in __main__.__doc__

Index: macosx_main.py
===================================================================
RCS file: /cvsroot/idlefork/idle/macosx_main.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** macosx_main.py	31 Dec 2002 16:52:44 -0000	1.7
--- macosx_main.py	31 Dec 2002 18:22:37 -0000	1.8
***************
*** 1,17 ****
  #!/usr/bin/env pythonw
! """IDLE.app
! 
! Installation:
!   see the install_IDLE target in python/dist/src/Mac/OSX/Makefile
! 
! Usage:
! 
! 1. Double clicking IDLE icon will open IDLE.
! 2. Dropping file on IDLE icon will open that file in IDLE.
! 3. Launch from command line with files with this command-line:
! 
!      /Applications/Python/IDLE.app/Contents/MacOS/python file1 file2 file3
! 
! """
  
  # Add IDLE.app/Contents/Resources/idlelib to path.
--- 1,17 ----
  #!/usr/bin/env pythonw
! # IDLE.app
! #
! # Installation:
! #   see the install_IDLE target in python/dist/src/Mac/OSX/Makefile
! #
! # Usage:
! #
! # 1. Double clicking IDLE icon will open IDLE.
! # 2. Dropping file on IDLE icon will open that file in IDLE.
! # 3. Launch from command line with files with this command-line:
! #
! #     /Applications/Python/IDLE.app/Contents/MacOS/python file1 file2 file3
! #
! #
  
  # Add IDLE.app/Contents/Resources/idlelib to path.