(self, cwd)
| 415 | |
| 416 | # For use in the test_cwd* tests below. |
| 417 | def _normalize_cwd(self, cwd): |
| 418 | # Normalize an expected cwd (for Tru64 support). |
| 419 | # We can't use os.path.realpath since it doesn't expand Tru64 {memb} |
| 420 | # strings. See bug #1063571. |
| 421 | with os_helper.change_cwd(cwd): |
| 422 | return os.getcwd() |
| 423 | |
| 424 | # For use in the test_cwd* tests below. |
| 425 | def _split_python_path(self): |
no outgoing calls
no test coverage detected