(self, with_cwd=False)
| 560 | return |
| 561 | |
| 562 | def transfer_path(self, with_cwd=False): |
| 563 | if with_cwd: # Issue 13506 |
| 564 | path = [''] # include Current Working Directory |
| 565 | path.extend(sys.path) |
| 566 | else: |
| 567 | path = sys.path |
| 568 | |
| 569 | self.runcommand("""if 1: |
| 570 | import sys as _sys |
| 571 | _sys.path = {!r} |
| 572 | del _sys |
| 573 | \n""".format(path)) |
| 574 | |
| 575 | active_seq = None |
| 576 |
no test coverage detected