MCPcopy Create free account
hub / github.com/pymupdf/PyMuPDF / show_sysconfig

Function show_sysconfig

pipcl.py:3479–3487  ·  view source on GitHub ↗

Shows contents of sysconfig.get_paths() and sysconfig.get_config_vars() dicts.

()

Source from the content-addressed store, hash-verified

3477 return ret
3478
3479def show_sysconfig():
3480 '''
3481 Shows contents of sysconfig.get_paths() and sysconfig.get_config_vars() dicts.
3482 '''
3483 import sysconfig
3484 paths = sysconfig.get_paths()
3485 log0(f'show_sysconfig().')
3486 log0(f'sysconfig.get_paths():\n{_show_dict(sysconfig.get_paths())}')
3487 log0(f'sysconfig.get_config_vars():\n{_show_dict(sysconfig.get_config_vars())}')
3488
3489
3490def sysconfig_python_flags():

Callers 1

handle_argvMethod · 0.85

Calls 2

log0Function · 0.85
_show_dictFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…