From d700d79a73be8e2af31c5adf8ec81457be1c32f3 Mon Sep 17 00:00:00 2001 From: Just van Rossum Date: Wed, 20 Jun 2001 19:57:55 +0000 Subject: Override bdb's canonic() method with a no-op: with bdb's version we couldn't edit breakpoints in file-less ("Untitled" script windows). Besides, we did't need it as we always use full path names anyway. --- Mac/Tools/IDE/PyDebugger.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Mac/Tools/IDE/PyDebugger.py b/Mac/Tools/IDE/PyDebugger.py index c1f9b49..22ab7a2 100644 --- a/Mac/Tools/IDE/PyDebugger.py +++ b/Mac/Tools/IDE/PyDebugger.py @@ -49,6 +49,11 @@ class Debugger(bdb.Bdb): self.tracemagic = 0 self.laststacksel = None + def canonic(self, filename): + # override: the provided canonic() method breaks our + # file-less Untitled windows + return filename + def reset(self): self.currentframe = None self.file = None -- cgit v0.12