From: Just van Rossum Date: Wed, 20 Jun 2001 19:57:55 +0000 (+0000) Subject: Override bdb's canonic() method with a no-op: with bdb's version we couldn't edit... X-Git-Tag: v2.2a3~1501 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d700d79a73be8e2af31c5adf8ec81457be1c32f3;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Mac/Tools/IDE/PyDebugger.py b/Mac/Tools/IDE/PyDebugger.py index c1f9b49f49c0..22ab7a23c84d 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