Show More
@@ -3534,10 +3534,9 b' class TestRunner(object):' | |||
|
3534 | 3534 | # os.symlink() is a thing with py3 on Windows, but it requires |
|
3535 | 3535 | # Administrator rights. |
|
3536 | 3536 | if getattr(os, 'symlink', None) and os.name != 'nt': |
|
3537 | vlog( | |
|
3538 | "# Making python executable in test path a symlink to '%s'" | |
|
3539 | % sysexecutable | |
|
3540 | ) | |
|
3537 | msg = "# Making python executable in test path a symlink to '%s'" | |
|
3538 | msg %= sysexecutable | |
|
3539 | vlog(msg) | |
|
3541 | 3540 | mypython = os.path.join(self._tmpbindir, pyexename) |
|
3542 | 3541 | try: |
|
3543 | 3542 | if os.readlink(mypython) == sysexecutable: |
General Comments 0
You need to be logged in to leave comments.
Login now