Home
last modified time | relevance | path

Searched refs:canonic (Results 1 - 3 of 3) sorted by relevance

/third_party/python/Lib/
H A Dbdb.py39 def canonic(self, filename): member in Bdb
49 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] = canonic
54 return canonic
223 filename = self.canonic(frame.f_code.co_filename)
254 return self.canonic(fram
[all...]
H A Dpdb.py326 if (self.mainpyfile != self.canonic(frame.f_code.co_filename)
1610 if os.path.exists(f) and self.canonic(f) == self.mainpyfile:
1634 self.mainpyfile = self.canonic(target.filename)
/third_party/python/Lib/test/
H A Dtest_bdb.py323 fname = self.canonic(self.frame.f_code.co_filename)
326 if fname == self.canonic(__file__) else lineno)
330 if (lineno and self.canonic(fname) == self.canonic(__file__))
964 fname = db1.canonic(__file__)

Completed in 5 milliseconds