MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / _extend_dict

Function _extend_dict

tools/python-3.11.9-amd64/Lib/sysconfig.py:253–258  ·  view source on GitHub ↗
(target_dict, other_dict)

Source from the content-addressed store, hash-verified

251 raise AttributeError(f'{var}') from None
252
253def _extend_dict(target_dict, other_dict):
254 target_keys = target_dict.keys()
255 for key, value in other_dict.items():
256 if key in target_keys:
257 continue
258 target_dict[key] = value
259
260
261def _expand_vars(scheme, vars):

Callers 1

_expand_varsFunction · 0.85

Calls 2

keysMethod · 0.45
itemsMethod · 0.45

Tested by

no test coverage detected