Lines Matching refs:dict
125 # always be called *before* mutating the dict.
295 other = dict(other)
367 def __init__(self, dict=None):
384 if dict is not None:
385 self.update(dict)
388 # NOTE: We don't need to call this method before mutating the dict,
510 def update(self, dict=None, /, **kwargs):
512 if dict is not None:
513 if not hasattr(dict, "items"):
514 dict = type({})(dict)
515 for key, value in dict.items():