[Python-checkins] CVS: python/dist/src/Mac/Tools/IDE PyDebugger.py,1.6,1.7

Jack Jansen jackjansen@users.sourceforge.net
Sat, 25 Aug 2001 05:09:41 -0700


Update of /cvsroot/python/python/dist/src/Mac/Tools/IDE
In directory usw-pr-cvs1:/tmp/cvs-serv20936/Python/Mac/Tools/IDE

Modified Files:
	PyDebugger.py 
Log Message:
Import the MacOS toolbox modules from the Carbon package.

Index: PyDebugger.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Tools/IDE/PyDebugger.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** PyDebugger.py	2001/06/20 19:57:55	1.6
--- PyDebugger.py	2001/08/25 12:09:39	1.7
***************
*** 7,13 ****
  import WASTEconst
  import PyBrowser
! import Qd
! import Evt
! import Lists
  import MacOS
  _filenames = {}
--- 7,13 ----
  import WASTEconst
  import PyBrowser
! from Carbon import Qd
! from Carbon import Evt
! from Carbon import Lists
  import MacOS
  _filenames = {}
***************
*** 66,70 ****
  	def start(self, bottomframe = None, running = 0):
  		W.getapplication().DebuggerQuit = bdb.BdbQuit
! 		import Menu
  		Menu.HiliteMenu(0)
  		if self.closed:
--- 66,70 ----
  	def start(self, bottomframe = None, running = 0):
  		W.getapplication().DebuggerQuit = bdb.BdbQuit
! 		from Carbon import Menu
  		Menu.HiliteMenu(0)
  		if self.closed: