MCPcopy Create free account
hub / github.com/boostorg/build / workpath

Method workpath

v2/test/TestCmd.py:538–545  ·  view source on GitHub ↗

Returns the absolute path name to a subdirectory or file within the current temporary working directory. Concatenates the temporary working directory name with the specified arguments using os.path.join().

(self, *args)

Source from the content-addressed store, hash-verified

536 self.workdir = None
537
538 def workpath(self, *args):
539 """
540 Returns the absolute path name to a subdirectory or file within the
541 current temporary working directory. Concatenates the temporary working
542 directory name with the specified arguments using os.path.join().
543
544 """
545 return apply(os.path.join, (self.workdir,) + tuple(args))
546
547 def writable(self, top, write):
548 """

Callers 2

runMethod · 0.95
testSORTDurationFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected