4813caaade69050a44979ed878298e3ae89b08eb,sonnet/python/ops/nest.py,,_iterable_like,#Any#Any#,56

Before Change


  Returns:
    `args` with the type of `instance`.
  
  if isinstance(instance, collections.OrderedDict):
    return collections.OrderedDict(zip(six.iterkeys(instance), args))
  elif isinstance(instance, dict):
    return dict(zip(_sorted(instance), args))
  elif (isinstance(instance, tuple) and
        hasattr(instance, "_fields") and
        isinstance(instance._fields, collections.Sequence) and
        all(isinstance(f, six.string_types) for f in instance._fields)):
    // This is a namedtuple
    return type(instance)(*args)
  else:
    // Not a namedtuple
    return type(instance)(args)


def _yield_value_from_iterable(iterable):
  if isinstance(iterable, dict):
    if isinstance(iterable, collections.OrderedDict):
      for key in iterable:

After Change


    // ordered and plain dicts (e.g., flattening a dict but using a
    // corresponding `OrderedDict` to pack it back).
    result = dict(zip(_sorted(instance), args))
    return type(instance)((key, result[key]) for key in _six.iterkeys(instance))
  elif (isinstance(instance, tuple) and
        hasattr(instance, "_fields") and
        isinstance(instance._fields, _collections.Sequence) and
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: deepmind/sonnet
Commit Name: 4813caaade69050a44979ed878298e3ae89b08eb
Time: 2017-08-07
Author: noreply@google.com
File Name: sonnet/python/ops/nest.py
Class Name:
Method Name: _iterable_like


Project Name: catalyst-team/catalyst
Commit Name: 1d936f7ff3ab938d2712870f9f36d59c40df8f00
Time: 2019-08-30
Author: scitator@gmail.com
File Name: catalyst/rl/core/trainer.py
Class Name: TrainerSpec
Method Name: _run_loader


Project Name: deepmind/sonnet
Commit Name: b4a00d035276a1e93a8bf06772677be746a15f90
Time: 2019-06-28
Author: tomhennigan@google.com
File Name: sonnet/src/optimizer_utils.py
Class Name:
Method Name: check_strategy