diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-25 12:15:04 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-25 12:15:04 +0000 |
commit | 5a6fdcd3718927109592c6df692fe24a8fdaee31 (patch) | |
tree | 3816c4cbfcf1533dee55a48a8eec2c3557ae44cc /Mac/Tools/IDE/PyDebugger.py | |
parent | 6dba6bc0a226c2dd384d9311b9ad842be653c2b5 (diff) | |
download | cpython-git-5a6fdcd3718927109592c6df692fe24a8fdaee31.tar.gz |
Import the MacOS toolbox modules from the Carbon package.
Diffstat (limited to 'Mac/Tools/IDE/PyDebugger.py')
-rw-r--r-- | Mac/Tools/IDE/PyDebugger.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/Tools/IDE/PyDebugger.py b/Mac/Tools/IDE/PyDebugger.py index 22ab7a23c8..56a0658c57 100644 --- a/Mac/Tools/IDE/PyDebugger.py +++ b/Mac/Tools/IDE/PyDebugger.py @@ -6,9 +6,9 @@ import os import W import WASTEconst import PyBrowser -import Qd -import Evt -import Lists +from Carbon import Qd +from Carbon import Evt +from Carbon import Lists import MacOS _filenames = {} @@ -65,7 +65,7 @@ class Debugger(bdb.Bdb): def start(self, bottomframe = None, running = 0): W.getapplication().DebuggerQuit = bdb.BdbQuit - import Menu + from Carbon import Menu Menu.HiliteMenu(0) if self.closed: self.setupwidgets(self.title) |