Commit bdba3205 authored by Guido van Rossum's avatar Guido van Rossum

canonic(): Fix by Edward K Ream to make breakpoints work better on

Windows: apply normcase() as well as abspath().  (Note: this isn't
needed to make IDLE work, but it's a good idea anyway.)

Bugfix candidate -- both 2.2.1 and 2.1.3.
parent 16ac99a9
......@@ -28,6 +28,7 @@ class Bdb:
canonic = self.fncache.get(filename)
if not canonic:
canonic = os.path.abspath(filename)
canonic = os.path.normcase(canonic)
self.fncache[filename] = canonic
return canonic
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment