Ignore:
Timestamp:
Apr 20, 2017 6:29:34 AM (8 years ago)
Author:
andyfaff
Children:
0cc77d8
Parents:
b636dfc5
git-author:
Andrew Nelson <andyfaff@…> (04/20/17 06:25:57)
git-committer:
Andrew Nelson <andyfaff@…> (04/20/17 06:29:34)
Message:

MAINT: use raise Exception() not raise Exception

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sascalc/calculator/sas_gen.py

    r7432acb rb9d74f3  
    3232        factor = MFACTOR_MT 
    3333    else: 
    34         raise ValueError, "Invalid valueunit" 
     34        raise ValueError("Invalid valueunit") 
    3535    sld_m = factor * mag 
    3636    return sld_m 
     
    172172            if len(x[1]) > 0: 
    173173                msg = "Not a 1D." 
    174                 raise ValueError, msg 
     174                raise ValueError(msg) 
    175175            i_out = np.zeros_like(x[0]) 
    176176            # 1D I is found at y =0 in the 2D pattern 
     
    179179        else: 
    180180            msg = "Q must be given as list of qx's and qy's" 
    181             raise ValueError, msg 
     181            raise ValueError(msg) 
    182182 
    183183    def runXY(self, x=0.0): 
     
    194194        else: 
    195195            msg = "Q must be given as list of qx's and qy's" 
    196             raise ValueError, msg 
     196            raise ValueError(msg) 
    197197 
    198198    def evalDistribution(self, qdist): 
     
    212212            mesg = "evalDistribution is expecting an ndarray of " 
    213213            mesg += "a list [qx,qy] where qx,qy are arrays." 
    214             raise RuntimeError, mesg 
     214            raise RuntimeError(mesg) 
    215215 
    216216class OMF2SLD(object): 
     
    313313        msg = "Error: Inconsistent data length." 
    314314        if len(self.pos_x) != length: 
    315             raise ValueError, msg 
     315            raise ValueError(msg) 
    316316        if len(self.pos_y) != length: 
    317             raise ValueError, msg 
     317            raise ValueError(msg) 
    318318        if len(self.pos_z) != length: 
    319             raise ValueError, msg 
     319            raise ValueError(msg) 
    320320        if len(self.mx) != length: 
    321             raise ValueError, msg 
     321            raise ValueError(msg) 
    322322        if len(self.my) != length: 
    323             raise ValueError, msg 
     323            raise ValueError(msg) 
    324324        if len(self.mz) != length: 
    325             raise ValueError, msg 
     325            raise ValueError(msg) 
    326326 
    327327    def remove_null_points(self, remove=False, recenter=False): 
     
    413413                        msg = "Error: \n" 
    414414                        msg += "We accept only m as meshunit" 
    415                         raise ValueError, msg 
     415                        raise ValueError(msg) 
    416416                if s_line[0].lower().count("xbase") > 0: 
    417417                    xbase = s_line[1].lstrip() 
     
    483483            msg = "%s is not supported: \n" % path 
    484484            msg += "We accept only Text format OMF file." 
    485             raise RuntimeError, msg 
     485            raise RuntimeError(msg) 
    486486 
    487487class PDBReader(object): 
     
    603603            return output 
    604604        except: 
    605             raise RuntimeError, "%s is not a sld file" % path 
     605            raise RuntimeError("%s is not a sld file" % path) 
    606606 
    607607    def write(self, path, data): 
     
    695695            return output 
    696696        except: 
    697             raise RuntimeError, "%s is not a sld file" % path 
     697            raise RuntimeError("%s is not a sld file" % path) 
    698698 
    699699    def write(self, path, data): 
     
    704704        """ 
    705705        if path is None: 
    706             raise ValueError, "Missing the file path." 
     706            raise ValueError("Missing the file path.") 
    707707        if data is None: 
    708             raise ValueError, "Missing the data to save." 
     708            raise ValueError("Missing the data to save.") 
    709709        x_val = data.pos_x 
    710710        y_val = data.pos_y 
Note: See TracChangeset for help on using the changeset viewer.