(self)
| 89 | @os_helper.skip_unless_symlink |
| 90 | @support.requires_subprocess() |
| 91 | def test_architecture_via_symlink(self): # issue3762 |
| 92 | with support.PythonSymlink() as py: |
| 93 | cmd = "-c", "import platform; print(platform.architecture())" |
| 94 | self.assertEqual(py.call_real(*cmd), py.call_link(*cmd)) |
| 95 | |
| 96 | def test_platform(self): |
| 97 | for aliased in (False, True): |
nothing calls this directly
no test coverage detected