Display all information sysconfig detains.
()
| 834 | |
| 835 | |
| 836 | def _main(): |
| 837 | """Display all information sysconfig detains.""" |
| 838 | if '--generate-posix-vars' in sys.argv: |
| 839 | _generate_posix_vars() |
| 840 | return |
| 841 | print(f'Platform: "{get_platform()}"') |
| 842 | print(f'Python version: "{get_python_version()}"') |
| 843 | print(f'Current installation scheme: "{get_default_scheme()}"') |
| 844 | print() |
| 845 | _print_dict('Paths', get_paths()) |
| 846 | print() |
| 847 | _print_dict('Variables', get_config_vars()) |
| 848 | |
| 849 | |
| 850 | if __name__ == '__main__': |
no test coverage detected