d98f005f0c74959ae986d259000cd056e5145367,scipy/interpolate/fitpack2.py,_BivariateSplineBase,__call__,#_BivariateSplineBase#Any#Any#Any#Any#Any#Any#,591

Before Change


        y = np.asarray(y)

        if mth != "array":
            raise NotImplementedError("unknown method mth=%s" % mth)

        tx, ty, c = self.tck[:3]
        kx, ky = self.degrees
        if grid:

After Change


        y = np.asarray(y)

        if mth is not None:
            warnings.warn("The `mth` argument is deprecated and will be removed",
                          FutureWarning)

        tx, ty, c = self.tck[:3]
        kx, ky = self.degrees
        if grid:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 4

Instances


Project Name: scipy/scipy
Commit Name: d98f005f0c74959ae986d259000cd056e5145367
Time: 2013-09-01
Author: pav@iki.fi
File Name: scipy/interpolate/fitpack2.py
Class Name: _BivariateSplineBase
Method Name: __call__


Project Name: GPflow/GPflow
Commit Name: bb08f22e337d1487b8d9ab9944d8b9f7fff853ff
Time: 2018-06-18
Author: dutordoirv@gmail.com
File Name: gpflow/features.py
Class Name: InducingFeature
Method Name: Kuu


Project Name: GPflow/GPflow
Commit Name: bb08f22e337d1487b8d9ab9944d8b9f7fff853ff
Time: 2018-06-18
Author: dutordoirv@gmail.com
File Name: gpflow/features.py
Class Name: InducingFeature
Method Name: Kuf


Project Name: markovmodel/PyEMMA
Commit Name: 5b66c42def828998e46aa2e48146f9c81b5528f6
Time: 2017-05-07
Author: feliks.nueske@fu-berlin.de
File Name: pyemma/coordinates/transform/tica.py
Class Name: TICA
Method Name: __init__