()
| 58 | return False |
| 59 | |
| 60 | def linux_distribution(): |
| 61 | if _state.LINUX_DISTRIBUTION is None: |
| 62 | _state.LINUX_DISTRIBUTION = _get_linux_distribution() |
| 63 | return _state.LINUX_DISTRIBUTION |
| 64 | |
| 65 | def _get_linux_distribution(): |
| 66 | if not is_linux(): |
no test coverage detected