MCPcopy Index your code
hub / github.com/python/cpython / get_config_var

Function get_config_var

Lib/sysconfig/__init__.py:629–635  ·  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

627
628
629def get_config_var(name):
630 """Return the value of a single variable using the dictionary returned by
631 'get_config_vars()'.
632
633 Equivalent to get_config_vars().get(name)
634 """
635 return get_config_vars().get(name)
636
637
638def 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…