(config)
| 926 | return None |
| 927 | |
| 928 | def wget_supports_compression(config): |
| 929 | try: |
| 930 | cmd = [ |
| 931 | config['WGET_BINARY'], |
| 932 | "--compression=auto", |
| 933 | "--help", |
| 934 | ] |
| 935 | return not run(cmd, stdout=DEVNULL, stderr=DEVNULL).returncode |
| 936 | except (FileNotFoundError, OSError): |
| 937 | return False |
| 938 | |
| 939 | def get_code_locations(config: ConfigDict) -> SimpleConfigValueDict: |
| 940 | return { |