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)
| 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 | """ |
no outgoing calls
no test coverage detected