[Python-checkins] CVS: python/dist/src/Tools/idle idle.pyw,1.2,1.3

Guido van Rossum guido@cnri.reston.va.us
Mon, 6 Mar 2000 12:16:08 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Tools/idle
In directory eric:/projects/python/develop/guido/src/Tools/idle

Modified Files:
	idle.pyw 
Log Message:
Defer all the work to idle.py, which has recently become too
complicated to copy in-line here.


Index: idle.pyw
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Tools/idle/idle.pyw,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** idle.pyw	1999/01/02 21:28:52	1.2
--- idle.pyw	2000/03/06 17:16:05	1.3
***************
*** 1,5 ****
  try:
!     import PyShell
!     PyShell.main()
  except SystemExit:
      raise
--- 1,4 ----
  try:
!     import idle
  except SystemExit:
      raise