Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sascalc/dataloader/data_info.py

    rdeaa0c6 r749b715  
    716716                self.y_unit = '1/cm' 
    717717        except: # the data is not recognized/supported, and the user is notified 
    718             raise(TypeError, 'data not recognized, check documentation for supported 1D data formats') 
     718            raise TypeError('data not recognized, check documentation for supported 1D data formats') 
    719719 
    720720    def __str__(self): 
     
    775775        clone.meta_data = deepcopy(self.meta_data) 
    776776        clone.errors = deepcopy(self.errors) 
     777        clone.isSesans = self.isSesans 
    777778 
    778779        return clone 
     
    796797                len(self.y) != len(other.y): 
    797798                msg = "Unable to perform operation: data length are not equal" 
    798                 raise ValueError, msg 
     799                raise ValueError(msg) 
    799800            # Here we could also extrapolate between data points 
    800801            TOLERANCE = 0.01 
     
    802803                if math.fabs((self.x[i] - other.x[i])/self.x[i]) > TOLERANCE: 
    803804                    msg = "Incompatible data sets: x-values do not match" 
    804                     raise ValueError, msg 
     805                    raise ValueError(msg) 
    805806 
    806807            # Check that the other data set has errors, otherwise 
     
    876877        if not isinstance(other, Data1D): 
    877878            msg = "Unable to perform operation: different types of data set" 
    878             raise ValueError, msg 
     879            raise ValueError(msg) 
    879880        return True 
    880881 
     
    948949 
    949950        if len(self.detector) > 0: 
    950             raise RuntimeError, "Data2D: Detector bank already filled at init" 
     951            raise RuntimeError("Data2D: Detector bank already filled at init") 
    951952 
    952953    def __str__(self): 
     
    10201021                len(self.qy_data) != len(other.qy_data): 
    10211022                msg = "Unable to perform operation: data length are not equal" 
    1022                 raise ValueError, msg 
     1023                raise ValueError(msg) 
    10231024            for ind in range(len(self.data)): 
    10241025                if math.fabs((self.qx_data[ind] - other.qx_data[ind])/self.qx_data[ind]) > TOLERANCE: 
    10251026                    msg = "Incompatible data sets: qx-values do not match: %s %s" % (self.qx_data[ind], other.qx_data[ind]) 
    1026                     raise ValueError, msg 
     1027                    raise ValueError(msg) 
    10271028                if math.fabs((self.qy_data[ind] - other.qy_data[ind])/self.qy_data[ind]) > TOLERANCE: 
    10281029                    msg = "Incompatible data sets: qy-values do not match: %s %s" % (self.qy_data[ind], other.qy_data[ind]) 
    1029                     raise ValueError, msg 
     1030                    raise ValueError(msg) 
    10301031 
    10311032            # Check that the scales match 
     
    11081109        if not isinstance(other, Data2D): 
    11091110            msg = "Unable to perform operation: different types of data set" 
    1110             raise ValueError, msg 
     1111            raise ValueError(msg) 
    11111112        return True 
    11121113 
Note: See TracChangeset for help on using the changeset viewer.