(probe)
| 952 | } |
| 953 | |
| 954 | function pythonMajorMinor(probe) { |
| 955 | if (!probe || typeof probe.major !== 'number' || typeof probe.minor !== 'number') { |
| 956 | return ''; |
| 957 | } |
| 958 | return `${probe.major}.${probe.minor}`; |
| 959 | } |
| 960 | |
| 961 | function pythonVersionText(probe) { |
| 962 | if (!probe) { |
no outgoing calls
no test coverage detected