(version = None)
| 878 | # list of all known default paths (if no version is given) |
| 879 | # |
| 880 | def default_paths(version = None): |
| 881 | possible_paths = [] |
| 882 | if version: |
| 883 | path = default_path(version) |
| 884 | if path: |
| 885 | possible_paths.append(path) |
| 886 | else: |
| 887 | for i in _known_versions: |
| 888 | path = default_path(i) |
| 889 | if path: |
| 890 | possible_paths.append(path) |
| 891 | return possible_paths |
| 892 | |
| 893 | |
| 894 | class MsvcLinkingGenerator(builtin.LinkingGenerator): |
no test coverage detected