Searched refs:canonic (Results 1 – 6 of 6) sorted by relevance
29 def canonic(self, filename): member in Bdb32 canonic = self.fncache.get(filename)33 if not canonic:34 canonic = os.path.abspath(filename)35 canonic = os.path.normcase(canonic)36 self.fncache[filename] = canonic37 return canonic127 filename = self.canonic(frame.f_code.co_filename)152 return self.canonic(frame.f_code.co_filename) in self.breaks253 filename = self.canonic(filename)[all …]
153 if (self.mainpyfile != self.canonic(frame.f_code.co_filename)1196 if os.path.exists(f) and self.canonic(f) == self.mainpyfile:1230 self.mainpyfile = self.canonic(filename)
88 .. method:: canonic(filename)252 should be in canonical form, as described in the :meth:`canonic` method.
1235 * Debugger.py: Add canonic() function -- for brand new bdb.py feature.
11383 * SAX.c: ensured xmlDoc.URL is always canonic