73da0e896d6c8a363ba7a86d549f20c26744cbff,mvpa/base/hdf5.py,,_recon_customobj_defaultrecon,#Any#Any#,221
Before Change
cls = mod.__dict__[cls_name]
// create the object
if issubclass(cls, dict):
// use specialized __new__ if necessary or beneficial
obj = dict.__new__(cls)
else:
obj = object.__new__(cls)
if "state" in hdf:
// insert the state of the object
if __debug__:
debug("HDF5", "Populating instance state.")
After Change
// charge the items -- handling depends on the parent class
pcls, umeth, cfunc = _get_subclass_entry(
cls,
((dict, "update", _hdf_dict_to_obj),
(list, "extend", _hdf_list_to_obj)),
"Unhandled container type (got: "%(cls)s").")
if __debug__:
debug("HDF5", "Populating %s object." % pcls)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: PyMVPA/PyMVPA
Commit Name: 73da0e896d6c8a363ba7a86d549f20c26744cbff
Time: 2011-01-03
Author: debian@onerussian.com
File Name: mvpa/base/hdf5.py
Class Name:
Method Name: _recon_customobj_defaultrecon
Project Name: scipy/scipy
Commit Name: bc83ffdfc021ac69baad19efac02d8fd47dc606e
Time: 2014-07-16
Author: argriffi@ncsu.edu
File Name: scipy/stats/_continuous_distns.py
Class Name:
Method Name:
Project Name: scipy/scipy
Commit Name: bc83ffdfc021ac69baad19efac02d8fd47dc606e
Time: 2014-07-16
Author: argriffi@ncsu.edu
File Name: scipy/stats/_discrete_distns.py
Class Name:
Method Name: