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/sasgui/plottools/plottables.py

    r45dffa69 rb9d74f3  
    386386 
    387387        """ 
    388         raise NotImplemented, "Not a valid transform" 
     388        raise NotImplemented("Not a valid transform") 
    389389 
    390390    # Related issues 
     
    686686                msg = "Plottable.View: Given x and dx are not" 
    687687                msg += " of the same length" 
    688                 raise ValueError, msg 
     688                raise ValueError(msg) 
    689689            # Check length of y array 
    690690            if not len(y) == len(x): 
    691691                msg = "Plottable.View: Given y " 
    692692                msg += "and x are not of the same length" 
    693                 raise ValueError, msg 
     693                raise ValueError(msg) 
    694694 
    695695            if dy is not None and not len(dy) == 0 and not len(y) == len(dy): 
    696696                msg = "Plottable.View: Given y and dy are not of the same " 
    697697                msg += "length: len(y)=%s, len(dy)=%s" % (len(y), len(dy)) 
    698                 raise ValueError, msg 
     698                raise ValueError(msg) 
    699699            self.x = [] 
    700700            self.y = [] 
     
    731731                msg = "Plottable.View: transformed x " 
    732732                msg += "and y are not of the same length" 
    733                 raise ValueError, msg 
     733                raise ValueError(msg) 
    734734            if has_err_x and not (len(self.x) == len(self.dx)): 
    735735                msg = "Plottable.View: transformed x and dx" 
    736736                msg += " are not of the same length" 
    737                 raise ValueError, msg 
     737                raise ValueError(msg) 
    738738            if has_err_y and not (len(self.y) == len(self.dy)): 
    739739                msg = "Plottable.View: transformed y" 
    740740                msg += " and dy are not of the same length" 
    741                 raise ValueError, msg 
     741                raise ValueError(msg) 
    742742            # Check that negative values are not plot on x and y axis for 
    743743            # log10 transformation 
     
    11051105        Plottable.__init__(self) 
    11061106        msg = "Theory1D is no longer supported, please use Data1D and change symbol.\n" 
    1107         raise DeprecationWarning, msg 
     1107        raise DeprecationWarning(msg) 
    11081108 
    11091109class Fit1D(Plottable): 
Note: See TracChangeset for help on using the changeset viewer.