aee644931d66a4e4eca62da1ce32597e330e341c,Lib/sandbox/timeseries/timeseries.py,TimeSeries,__iadd__,#TimeSeries#Any#,169
Before Change
////// IN PLACE
def __iadd__(self, other):
validOpInputs(self, other)
self = SAtoTS(super(TimeSeries, self).__add__(other), self.freq, self.observed)
return self
def __isub__(self, other):
validOpInputs(self, other)
After Change
def __sqrt__(self): return sqrt(self)
def __iadd__(self, other):
return self + other
def __imul__(self, other):
return self * other
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 10
Instances
Project Name: scipy/scipy
Commit Name: aee644931d66a4e4eca62da1ce32597e330e341c
Time: 2006-12-20
Author: mattknox_ca@localhost
File Name: Lib/sandbox/timeseries/timeseries.py
Class Name: TimeSeries
Method Name: __iadd__
Project Name: scipy/scipy
Commit Name: aee644931d66a4e4eca62da1ce32597e330e341c
Time: 2006-12-20
Author: mattknox_ca@localhost
File Name: Lib/sandbox/timeseries/timeseries.py
Class Name: TimeSeries
Method Name: __idiv__
Project Name: scipy/scipy
Commit Name: aee644931d66a4e4eca62da1ce32597e330e341c
Time: 2006-12-20
Author: mattknox_ca@localhost
File Name: Lib/sandbox/timeseries/timeseries.py
Class Name: TimeSeries
Method Name: __isub__
Project Name: scipy/scipy
Commit Name: aee644931d66a4e4eca62da1ce32597e330e341c
Time: 2006-12-20
Author: mattknox_ca@localhost
File Name: Lib/sandbox/timeseries/timeseries.py
Class Name: TimeSeries
Method Name: __imul__
Project Name: scipy/scipy
Commit Name: aee644931d66a4e4eca62da1ce32597e330e341c
Time: 2006-12-20
Author: mattknox_ca@localhost
File Name: Lib/sandbox/timeseries/timeseries.py
Class Name: TimeSeries
Method Name: __iadd__