MCPcopy
hub / github.com/pyinstaller/pyinstaller / abspath

Method abspath

bootloader/waflib/Node.py:316–328  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

314 return self.abspath()
315
316 def abspath(self):
317 try:
318 return self.cache_abspath
319 except AttributeError:
320 pass
321 if not self.parent:
322 val = os.sep
323 elif not self.parent.name:
324 val = os.sep + self.name
325 else:
326 val = self.parent.abspath() + os.sep + self.name
327 self.cache_abspath = val
328 return val
329
330 if Utils.is_win32:
331

Callers 15

__str__Method · 0.95
__repr__Method · 0.95
readMethod · 0.95
writeMethod · 0.95
existsMethod · 0.95
isdirMethod · 0.95
chmodMethod · 0.95
deleteMethod · 0.95
listdirMethod · 0.95
mkdirMethod · 0.95
path_fromMethod · 0.95
h_fileMethod · 0.95

Calls

no outgoing calls

Tested by 15

importModuleMethod · 0.64
importModuleMethod · 0.64
setUpMethod · 0.64
testBasicImpliesMethod · 0.64
testPackagedImpliesMethod · 0.64
importModuleMethod · 0.64
setUpMethod · 0.64
setUpMethod · 0.64
testMissingPathEntryMethod · 0.64
setUpMethod · 0.64