Searched refs:canonic (Results 1 – 7 of 7) sorted by relevance
39 def canonic(self, filename): member in Bdb49 canonic = self.fncache.get(filename)50 if not canonic:51 canonic = os.path.abspath(filename)52 canonic = os.path.normcase(canonic)53 self.fncache[filename] = canonic54 return canonic223 filename = self.canonic(frame.f_code.co_filename)254 return self.canonic(frame.f_code.co_filename) in self.breaks383 filename = self.canonic(filename)[all …]
257 if (self.mainpyfile != self.canonic(frame.f_code.co_filename)1526 if os.path.exists(f) and self.canonic(f) == self.mainpyfile:1546 self.mainpyfile = self.canonic(code.co_filename)1578 self.mainpyfile = self.canonic(filename)
322 fname = self.canonic(self.frame.f_code.co_filename)325 if fname == self.canonic(__file__) else lineno)329 if (lineno and self.canonic(fname) == self.canonic(__file__))954 fname = db1.canonic(__file__)
96 .. method:: canonic(filename)260 should be in canonical form, as described in the :meth:`canonic` method.
509 # Converts native Windows paths into our internal canonic path representation.
1235 * Debugger.py: Add canonic() function -- for brand new bdb.py feature.
85978 - * SAX.c: ensured xmlDoc.URL is always canonic