(self)
| 124 | @os_helper.skip_unless_symlink |
| 125 | @support.requires_subprocess() |
| 126 | def test_architecture_via_symlink(self): # issue3762 |
| 127 | with support.PythonSymlink() as py: |
| 128 | cmd = "-c", "import platform; print(platform.architecture())" |
| 129 | self.assertEqual(py.call_real(*cmd), py.call_link(*cmd)) |
| 130 | |
| 131 | def test_platform(self): |
| 132 | for aliased in (False, True): |
nothing calls this directly
no test coverage detected