Lines Matching refs:value
255 for key, value in other_dict.items():
258 target_dict[key] = value
268 # than the native value (without modifying vars, in case it
272 for key, value in _INSTALL_SCHEMES[scheme].items():
274 value = os.path.expanduser(value)
275 res[key] = os.path.normpath(_subst_vars(value, vars))
318 A dictionary containing name/value pairs is returned. If an
368 value = notdone[name]
369 m1 = re.search(_findvar1_rx, value)
370 m2 = re.search(_findvar2_rx, value)
402 after = value[m.end():]
403 value = value[:m.start()] + item + after
405 notdone[name] = value
410 value = int(value)
412 done[name] = value.strip()
414 done[name] = value
422 done[name] = value
428 done[name] = value
556 A dictionary containing name/value pairs is returned. If an
710 """Return the value of a single variable using the dictionary returned by
830 for index, (key, value) in enumerate(sorted(data.items())):
833 print(f'\t{key} = "{value}"')