MCPcopy Index your code
hub / github.com/RustPython/RustPython / get_config_var

Function get_config_var

Lib/sysconfig/__init__.py:634–640  ·  view source on GitHub ↗

Return the value of a single variable using the dictionary returned by 'get_config_vars()'. Equivalent to get_config_vars().get(name)

(name)

Source from the content-addressed store, hash-verified

632
633
634def get_config_var(name):
635 """Return the value of a single variable using the dictionary returned by
636 'get_config_vars()'.
637
638 Equivalent to get_config_vars().get(name)
639 """
640 return get_config_vars().get(name)
641
642
643def get_platform():

Callers 5

_get_pybuilddirFunction · 0.90
test_user_similarMethod · 0.90
_init_non_posixFunction · 0.85
get_platformFunction · 0.85
_get_python_version_abiFunction · 0.85

Calls 2

get_config_varsFunction · 0.85
getMethod · 0.45

Tested by 1

test_user_similarMethod · 0.72