Changeset b9d74f3 in sasview for src/sas/sasgui


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

Location:
src/sas/sasgui
Files:
31 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/guiframe/data_processor.py

    r7432acb rb9d74f3  
    907907                    msg = "Edit axis doesn't understand this selection.\n" 
    908908                    msg += "Please select only one column" 
    909                     raise ValueError, msg 
     909                    raise ValueError(msg) 
    910910            for (_, cell_col) in grid.selected_cells: 
    911911                if cell_col != col: 
     
    913913                    msg += "this operation.\n" 
    914914                    msg += "Please select elements of the same col.\n" 
    915                     raise ValueError, msg 
     915                    raise ValueError(msg) 
    916916 
    917917            # Finally check the highlighted cell if any cells missing 
     
    920920            msg = "No item selected.\n" 
    921921            msg += "Please select only one column or one cell" 
    922             raise ValueError, msg 
     922            raise ValueError(msg) 
    923923        return grid.selected_cells 
    924924 
     
    13241324            if sentence.strip() == "": 
    13251325                msg = "Select column values for x axis" 
    1326                 raise ValueError, msg 
     1326                raise ValueError(msg) 
    13271327        except: 
    13281328            msg = "X axis value error." 
     
    13431343            if sentence.strip() == "": 
    13441344                msg = "select value for y axis" 
    1345                 raise ValueError, msg 
     1345                raise ValueError(msg) 
    13461346        except: 
    13471347            msg = "Y axis value error." 
  • src/sas/sasgui/guiframe/gui_manager.py

    r2f22db9 rb9d74f3  
    26132613            wx.PostEvent(self, StatusEvent(status=msg, 
    26142614                                           info="error")) 
    2615             raise ValueError, msg 
     2615            raise ValueError(msg) 
    26162616        # text = str(data) 
    26172617        text = data.__str__() 
  • src/sas/sasgui/guiframe/local_perspectives/plotting/SectorSlicer.py

    r7432acb rb9d74f3  
    235235            msg = "Phi left and phi right are different" 
    236236            msg += " %f, %f" % (self.left_line.phi, self.right_line.phi) 
    237             raise ValueError, msg 
     237            raise ValueError(msg) 
    238238        params["Phi [deg]"] = self.main_line.theta * 180 / math.pi 
    239239        params["Delta_Phi [deg]"] = math.fabs(self.left_line.phi * 180 / math.pi) 
  • src/sas/sasgui/guiframe/local_perspectives/plotting/binder.py

    r463e7ffc rb9d74f3  
    187187        # Check that the trigger is valid 
    188188        if trigger not in self._actions: 
    189             raise ValueError, "%s invalid --- valid triggers are %s" \ 
    190                 % (trigger, ", ".join(self.events)) 
     189            raise ValueError("%s invalid --- valid triggers are %s" \ 
     190                % (trigger, ", ".join(self.events))) 
    191191        # Register the trigger callback 
    192192        self._actions[trigger][artist] = action 
     
    203203        """ 
    204204        if action not in self.events: 
    205             raise ValueError, "Trigger expects " + ", ".join(self.events) 
     205            raise ValueError("Trigger expects " + ", ".join(self.events)) 
    206206        # Tag the event with modifiers 
    207207        for mod in ('alt', 'control', 'shift', 'meta'): 
  • src/sas/sasgui/guiframe/local_perspectives/plotting/boxSlicer.py

    r7432acb rb9d74f3  
    152152            if new_slab is None: 
    153153                msg = "post data:cannot average , averager is empty" 
    154                 raise ValueError, msg 
     154                raise ValueError(msg) 
    155155            self.averager = new_slab 
    156156        if self.direction == "X": 
     
    168168        else: 
    169169            msg = "post data:no Box Average direction was supplied" 
    170             raise ValueError, msg 
     170            raise ValueError(msg) 
    171171        # # Average data2D given Qx or Qy 
    172172        box = self.averager(x_min=x_min, x_max=x_max, y_min=y_min, y_max=y_max, 
  • src/sas/sasgui/guiframe/local_perspectives/plotting/plotting.py

    r235f514 rb9d74f3  
    199199 
    200200        msg = "1D Panel of group ID %s could not be created" % str(group_id) 
    201         raise ValueError, msg 
     201        raise ValueError(msg) 
    202202 
    203203    def create_2d_panel(self, data, group_id): 
     
    217217            return new_panel 
    218218        msg = "2D Panel of group ID %s could not be created" % str(group_id) 
    219         raise ValueError, msg 
     219        raise ValueError(msg) 
    220220 
    221221    def update_panel(self, data, panel): 
     
    237237            msg += " to panel %s\n" % str(panel.window_caption) 
    238238            msg += "Please edit %s's units, labels" % str(data.name) 
    239             raise ValueError, msg 
     239            raise ValueError(msg) 
    240240        else: 
    241241            if panel.group_id not in data.list_group_id: 
  • src/sas/sasgui/guiframe/local_perspectives/plotting/sector_mask.py

    r7432acb rb9d74f3  
    175175            msg += "different %f, %f" % (self.left_line.phi, 
    176176                                         self.right_line.phi) 
    177             raise ValueError, msg 
     177            raise ValueError(msg) 
    178178        params["Phi"] = self.main_line.theta 
    179179        params["Delta_Phi"] = math.fabs(self.left_line.phi) 
  • src/sas/sasgui/guiframe/plugin_base.py

    r7432acb rb9d74f3  
    277277        """ 
    278278        msg = "%s plugin: does not support import theory" % str(self.sub_menu) 
    279         raise ValueError, msg 
     279        raise ValueError(msg) 
    280280 
    281281    def on_set_state_helper(self, event): 
  • src/sas/sasgui/perspectives/calculator/resolution_calculator_panel.py

    r7432acb rb9d74f3  
    10821082                msg = "The numbers must be one or two (separated by ',')..." 
    10831083                self._status_info(msg, 'stop') 
    1084                 raise RuntimeError, msg 
     1084                raise RuntimeError(msg) 
    10851085 
    10861086        return new_string 
  • src/sas/sasgui/perspectives/calculator/slit_length_calculator_panel.py

    r7432acb rb9d74f3  
    262262            if x == [] or  x is None or y == [] or y is None: 
    263263                msg = "The current data is empty please check x and y" 
    264                 raise ValueError, msg 
     264                raise ValueError(msg) 
    265265            slit_length_calculator = SlitlengthCalculator() 
    266266            slit_length_calculator.set_data(x=x, y=y) 
  • src/sas/sasgui/perspectives/corfunc/corfunc_state.py

    r7432acb rb9d74f3  
    284284            root, ext = os.path.splitext(basename) 
    285285            if not ext.lower() in self.ext: 
    286                 raise IOError, "{} is not a supported file type".format(ext) 
     286                raise IOError("{} is not a supported file type".format(ext)) 
    287287            tree = etree.parse(path, parser=etree.ETCompatXMLParser()) 
    288288            root = tree.getroot() 
     
    300300            # File not found 
    301301            msg = "{} is not a valid file path or doesn't exist".format(path) 
    302             raise IOError, msg 
     302            raise IOError(msg) 
    303303 
    304304        if len(output) == 0: 
     
    324324            msg = ("The CanSAS writer expects a Data1D instance. {} was " 
    325325                "provided").format(datainfo.__class__.__name__) 
    326             raise RuntimeError, msg 
     326            raise RuntimeError(msg) 
    327327        if datainfo.title is None or datainfo.title == '': 
    328328            datainfo.title = datainfo.name 
  • src/sas/sasgui/perspectives/fitting/fit_thread.py

    r959eb01 rb9d74f3  
    5454        except KeyboardInterrupt: 
    5555            msg = "Fitting: terminated by the user." 
    56             raise KeyboardInterrupt, msg 
     56            raise KeyboardInterrupt(msg) 
    5757 
    5858    def compute(self): 
  • src/sas/sasgui/perspectives/fitting/fitpage.py

    red2276f rb9d74f3  
    18471847                    wx.PostEvent(self._manager.parent, StatusEvent(status=msg, 
    18481848                                               info="error")) 
    1849                     raise ValueError, msg 
     1849                    raise ValueError(msg) 
    18501850 
    18511851            else: 
     
    18591859                    wx.PostEvent(self._manager.parent, StatusEvent(status=msg, 
    18601860                                               info="error")) 
    1861                     raise ValueError, msg 
     1861                    raise ValueError(msg) 
    18621862                # Maximum value of data 
    18631863                qmax = math.sqrt(x * x + y * y) 
     
    20982098        self._on_fit_complete() 
    20992099        if out is None or not np.isfinite(chisqr): 
    2100             raise ValueError, "Fit error occured..." 
     2100            raise ValueError("Fit error occured...") 
    21012101 
    21022102        is_modified = False 
     
    21732173                i += 1 
    21742174            else: 
    2175                 raise ValueError, "onsetValues: Invalid parameters..." 
     2175                raise ValueError("onsetValues: Invalid parameters...") 
    21762176        # Show error title when any errors displayed 
    21772177        if has_error: 
  • src/sas/sasgui/perspectives/fitting/fitpanel.py

    r67b0a99 rb9d74f3  
    125125        if uid not in self.opened_pages: 
    126126            msg = "Fitpanel cannot find ID: %s in self.opened_pages" % str(uid) 
    127             raise ValueError, msg 
     127            raise ValueError(msg) 
    128128        else: 
    129129            return self.opened_pages[uid] 
     
    389389        """ 
    390390        if data.__class__.__name__ != "list": 
    391             raise ValueError, "Fitpanel delete_data expect list of id" 
     391            raise ValueError("Fitpanel delete_data expect list of id") 
    392392        else: 
    393393            for page in self.opened_pages.values(): 
  • src/sas/sasgui/perspectives/fitting/fitting.py

    r7432acb rb9d74f3  
    12321232        panel = self.plot_panel 
    12331233        if panel is None: 
    1234             raise ValueError, "Fitting:_onSelect: NonType panel" 
     1234            raise ValueError("Fitting:_onSelect: NonType panel") 
    12351235        Plugin.on_perspective(self, event=event) 
    12361236        self.select_data(panel) 
  • src/sas/sasgui/perspectives/fitting/model_thread.py

    r7432acb rb9d74f3  
    6565        if self.data is None: 
    6666            msg = "Compute Calc2D receive data = %s.\n" % str(self.data) 
    67             raise ValueError, msg 
     67            raise ValueError(msg) 
    6868 
    6969        # Define matrix where data will be plotted 
  • src/sas/sasgui/perspectives/fitting/models.py

    r463e7ffc rb9d74f3  
    142142        if type is not None and issubclass(type, py_compile.PyCompileError): 
    143143            print "Problem with", repr(value) 
    144             raise type, value, tb 
     144            raise type(value).with_traceback(tb) 
    145145        return 1 
    146146 
  • src/sas/sasgui/perspectives/fitting/pagestate.py

    r959eb01 rb9d74f3  
    10141014            msg = "PageState no longer supports non-CanSAS" 
    10151015            msg += " format for fitting files" 
    1016             raise RuntimeError, msg 
     1016            raise RuntimeError(msg) 
    10171017 
    10181018        if node.get('version'): 
     
    13101310            else: 
    13111311                self.call_back(format=ext) 
    1312                 raise RuntimeError, "%s is not a file" % path 
     1312                raise RuntimeError("%s is not a file" % path) 
    13131313 
    13141314            # Return output consistent with the loader's api 
  • src/sas/sasgui/perspectives/invariant/invariant.py

    r7432acb rb9d74f3  
    133133            name = data.__class__.__name__ 
    134134            msg = "Invariant use only Data1D got: [%s] " % str(name) 
    135             raise ValueError, msg 
     135            raise ValueError(msg) 
    136136        self.compute_helper(data=data) 
    137137 
     
    240240            msg = "invariant.save_file: the data being saved is" 
    241241            msg += " not a sas.sascalc.dataloader.data_info.Data1D object" 
    242             raise RuntimeError, msg 
     242            raise RuntimeError(msg) 
    243243 
    244244    def set_state(self, state=None, datainfo=None): 
     
    258258                msg = "invariant.set_state: datainfo parameter cannot" 
    259259                msg += " be None in standalone mode" 
    260                 raise RuntimeError, msg 
     260                raise RuntimeError(msg) 
    261261            # Make sure the user sees the invariant panel after loading 
    262262            # self.parent.set_perspective(self.perspective) 
     
    320320        else: 
    321321            msg = "Scale can not be zero." 
    322             raise ValueError, msg 
     322            raise ValueError(msg) 
    323323        if len(new_plot.x) == 0: 
    324324            return 
  • src/sas/sasgui/perspectives/invariant/invariant_panel.py

    r7432acb rb9d74f3  
    318318        background = self.background_tcl.GetValue().lstrip().rstrip() 
    319319        if background == "": 
    320             raise ValueError, "Need a background" 
     320            raise ValueError("Need a background") 
    321321        if check_float(self.background_tcl): 
    322322            return float(background) 
    323323        else: 
    324324            msg = "Receive invalid value for background : %s" % (background) 
    325             raise ValueError, msg 
     325            raise ValueError(msg) 
    326326 
    327327    def get_scale(self): 
     
    331331        scale = self.scale_tcl.GetValue().lstrip().rstrip() 
    332332        if scale == "": 
    333             raise ValueError, "Need a background" 
     333            raise ValueError("Need a background") 
    334334        if check_float(self.scale_tcl): 
    335335            if float(scale) <= 0.0: 
     
    337337                self.scale_tcl.Refresh() 
    338338                msg = "Receive invalid value for scale: %s" % (scale) 
    339                 raise ValueError, msg 
     339                raise ValueError(msg) 
    340340            return float(scale) 
    341341        else: 
    342             raise ValueError, "Receive invalid value for scale : %s" % (scale) 
     342            raise ValueError("Receive invalid value for scale : %s" % (scale)) 
    343343 
    344344    def get_contrast(self): 
     
    865865        except: 
    866866            logger.error(sys.exc_value) 
    867             raise ValueError, "No such bookmark exists" 
     867            raise ValueError("No such bookmark exists") 
    868868 
    869869        # set the parameters 
  • src/sas/sasgui/perspectives/invariant/invariant_state.py

    r7432acb rb9d74f3  
    365365            msg = "InvariantSate no longer supports non-CanSAS" 
    366366            msg += " format for invariant files" 
    367             raise RuntimeError, msg 
     367            raise RuntimeError(msg) 
    368368 
    369369        if node.get('version')\ 
     
    739739                        output.append(sas_entry) 
    740740        else: 
    741             raise RuntimeError, "%s is not a file" % path 
     741            raise RuntimeError("%s is not a file" % path) 
    742742 
    743743        # Return output consistent with the loader's api 
     
    785785            msg = "The cansas writer expects a Data1D" 
    786786            msg += " instance: %s" % str(datainfo.__class__.__name__) 
    787             raise RuntimeError, msg 
     787            raise RuntimeError(msg) 
    788788        # make sure title and data run is filled up. 
    789789        if datainfo.title is None or datainfo.title == '': 
  • src/sas/sasgui/perspectives/pr/inversion_panel.py

    r7432acb rb9d74f3  
    854854                message += "than the number of points" 
    855855                wx.PostEvent(self._manager.parent, StatusEvent(status=message)) 
    856                 raise ValueError, message 
     856                raise ValueError(message) 
    857857            self.nfunc_ctl.SetBackgroundColour(wx.WHITE) 
    858858            self.nfunc_ctl.Refresh() 
  • src/sas/sasgui/perspectives/pr/inversion_state.py

    r7432acb rb9d74f3  
    235235            msg = "InversionState no longer supports non-CanSAS" 
    236236            msg += " format for P(r) files" 
    237             raise RuntimeError, msg 
     237            raise RuntimeError(msg) 
    238238 
    239239        if node.get('version') and node.get('version') == '1.0': 
     
    478478                        output.append(sas_entry) 
    479479        else: 
    480             raise RuntimeError, "%s is not a file" % path 
     480            raise RuntimeError("%s is not a file" % path) 
    481481 
    482482        # Return output consistent with the loader's api 
     
    522522            msg = "The cansas writer expects a Data1D " 
    523523            msg += "instance: %s" % str(datainfo.__class__.__name__) 
    524             raise RuntimeError, msg 
     524            raise RuntimeError(msg) 
    525525 
    526526        # Create basic XML document 
  • src/sas/sasgui/perspectives/pr/pr.py

    r7432acb rb9d74f3  
    149149                msg = "Pr.set_state: datainfo parameter cannot " 
    150150                msg += "be None in standalone mode" 
    151                 raise RuntimeError, msg 
     151                raise RuntimeError(msg) 
    152152 
    153153            # Ensuring that plots are coordinated correctly 
     
    450450        # Notify the user if we could not read the file 
    451451        if dataread is None: 
    452             raise RuntimeError, "Invalid data" 
     452            raise RuntimeError("Invalid data") 
    453453 
    454454        x = None 
     
    470470                if dataread is None: 
    471471                    return x, y, err 
    472                 raise RuntimeError, "This tool can only read 1D data" 
     472                raise RuntimeError("This tool can only read 1D data") 
    473473 
    474474        self._current_file_data.x = x 
     
    849849                status = "Problem reading data: %s" % sys.exc_value 
    850850                wx.PostEvent(self.parent, StatusEvent(status=status)) 
    851                 raise RuntimeError, status 
     851                raise RuntimeError(status) 
    852852 
    853853            # If the file contains nothing, just return 
    854854            if pr is None: 
    855                 raise RuntimeError, "Loaded data is invalid" 
     855                raise RuntimeError("Loaded data is invalid") 
    856856 
    857857            self.pr = pr 
     
    903903            msg = "pr.save_data: the data being saved is not a" 
    904904            msg += " sas.data_info.Data1D object" 
    905             raise RuntimeError, msg 
     905            raise RuntimeError(msg) 
    906906 
    907907    def setup_plot_inversion(self, alpha, nfunc, d_max, q_min=None, q_max=None, 
  • src/sas/sasgui/perspectives/simulation/ShapeAdapter.py

    r959eb01 rb9d74f3  
    8787            self.sim_canvas._model_changed() 
    8888        else: 
    89             raise ValueError, "SimShapeVisitor: Wrong class for visited object" 
     89            raise ValueError("SimShapeVisitor: Wrong class for visited object") 
    9090         
    9191         
     
    115115            self.sim_canvas._model_changed() 
    116116        else: 
    117             raise ValueError, "SimShapeVisitor: Wrong class for visited object" 
     117            raise ValueError("SimShapeVisitor: Wrong class for visited object") 
    118118         
    119119     
     
    130130            shape.accept_update(self) 
    131131        else: 
    132             raise ValueError, "ShapeAdapter: Shape [%s] not in list" % shape.name 
     132            raise ValueError("ShapeAdapter: Shape [%s] not in list" % shape.name) 
    133133 
  • src/sas/sasgui/plottools/LineModel.py

    r959eb01 rb9d74f3  
    8282        elif x.__class__.__name__ == 'tuple': 
    8383            msg = "Tuples are not allowed as input to BaseComponent models" 
    84             raise ValueError, msg 
     84            raise ValueError(msg) 
    8585        else: 
    8686            return self._line(x) 
     
    104104        elif x.__class__.__name__ == 'tuple': 
    105105            msg = "Tuples are not allowed as input to BaseComponent models" 
    106             raise ValueError, msg 
     106            raise ValueError(msg) 
    107107        else: 
    108108            return self._line(x) 
  • src/sas/sasgui/plottools/binder.py

    r463e7ffc rb9d74f3  
    187187        # Check that the trigger is valid 
    188188        if trigger not in self._actions: 
    189             raise ValueError, "%s invalid --- valid triggers are %s"\ 
    190                  % (trigger, ", ".join(self.events)) 
     189            raise ValueError("%s invalid --- valid triggers are %s"\ 
     190                 % (trigger, ", ".join(self.events))) 
    191191 
    192192        # Register the trigger callback 
     
    203203        """ 
    204204        if action not in self.events: 
    205             raise ValueError, "Trigger expects " + ", ".join(self.events) 
     205            raise ValueError("Trigger expects " + ", ".join(self.events)) 
    206206 
    207207        # Tag the event with modifiers 
  • src/sas/sasgui/plottools/convert_units.py

    r959eb01 rb9d74f3  
    4242                            unit = toks[0] + "^{" + str(powerer) + "}" 
    4343                else: 
    44                     raise ValueError, "missing } in unit expression" 
     44                    raise ValueError("missing } in unit expression") 
    4545        else:  # no powerer 
    4646            if  power != 1: 
    4747                unit = "(" + unit + ")" + "^{" + str(power) + "}" 
    4848    else: 
    49         raise ValueError, "empty unit ,enter a powerer different from zero" 
     49        raise ValueError("empty unit ,enter a powerer different from zero") 
    5050    return unit 
    5151 
  • src/sas/sasgui/plottools/fitDialog.py

    r7432acb rb9d74f3  
    671671                return x 
    672672            else: 
    673                 raise ValueError, "cannot compute log of a negative number" 
     673                raise ValueError("cannot compute log of a negative number") 
    674674 
    675675    def floatInvTransform(self, x): 
     
    734734        except: 
    735735            msg = "LinearFit.set_fit_region: fit range must be floats" 
    736             raise ValueError, msg 
     736            raise ValueError(msg) 
    737737        self.xminFit.SetValue(format_number(xmin)) 
    738738        self.xmaxFit.SetValue(format_number(xmax)) 
  • 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): 
  • src/sas/sasgui/plottools/transform.py

    r7432acb rb9d74f3  
    2424    """ 
    2525    if not x > 0: 
    26         raise ValueError, "Transformation only accepts positive values." 
     26        raise ValueError("Transformation only accepts positive values.") 
    2727    else: 
    2828        return x 
     
    5050    """ 
    5151    if not x >= 0: 
    52         raise ValueError, "square root of a negative value " 
     52        raise ValueError("square root of a negative value ") 
    5353    else: 
    5454        return math.sqrt(x) 
     
    7676    """ 
    7777    if not x >= 0: 
    78         raise ValueError, "double square root of a negative value " 
     78        raise ValueError("double square root of a negative value ") 
    7979    else: 
    8080        return math.sqrt(math.sqrt(x)) 
     
    9090    """ 
    9191    if not x > 0: 
    92         raise ValueError, "Log(x)of a negative value " 
     92        raise ValueError("Log(x)of a negative value ") 
    9393    else: 
    9494        return math.log(x) 
     
    100100        return 1 / x 
    101101    else: 
    102         raise ValueError, "cannot divide by zero" 
     102        raise ValueError("cannot divide by zero") 
    103103 
    104104 
     
    109109        return 1 / math.sqrt(y) 
    110110    else: 
    111         raise ValueError, "transform.toOneOverSqrtX: cannot be computed" 
     111        raise ValueError("transform.toOneOverSqrtX: cannot be computed") 
    112112 
    113113 
     
    118118        return math.log(y * (x ** 2)) 
    119119    else: 
    120         raise ValueError, "transform.toLogYX2: cannot be computed" 
     120        raise ValueError("transform.toLogYX2: cannot be computed") 
    121121 
    122122 
     
    127127        return math.log(math.pow(x, 4) * y) 
    128128    else: 
    129         raise ValueError, "transform.toLogYX4: input error" 
     129        raise ValueError("transform.toLogYX4: input error") 
    130130 
    131131 
     
    149149    """ 
    150150    if not (x * y) > 0: 
    151         raise ValueError, "Log(X*Y)of a negative value " 
     151        raise ValueError("Log(X*Y)of a negative value ") 
    152152    else: 
    153153        return math.log(x * y) 
     
    211211    else: 
    212212        msg = "transform.errFromX2: can't compute error of negative x" 
    213         raise ValueError, msg 
     213        raise ValueError(msg) 
    214214 
    215215 
     
    245245    else: 
    246246        msg = "transform.errFromX4: can't compute error of negative x" 
    247         raise ValueError, msg 
     247        raise ValueError(msg) 
    248248 
    249249 
     
    264264        msg = "Transformation does not accept" 
    265265        msg += " point that are consistent with zero." 
    266         raise ValueError, msg 
     266        raise ValueError(msg) 
    267267    if x != 0: 
    268268        dx = dx / (x * math.log(10)) 
    269269    else: 
    270         raise ValueError, "errToLogX: divide by zero" 
     270        raise ValueError("errToLogX: divide by zero") 
    271271    return dx 
    272272 
     
    287287        dx = dx / x 
    288288    else: 
    289         raise ValueError, "errToLogX: divide by zero" 
     289        raise ValueError("errToLogX: divide by zero") 
    290290    return dx 
    291291 
     
    312312        msg = "Transformation does not accept point " 
    313313        msg += " that are consistent with zero." 
    314         raise ValueError, msg 
     314        raise ValueError(msg) 
    315315    if x != 0 and y != 0: 
    316316        if dx is None: 
     
    320320        err = (dx / x) ** 2 + (dy / y) ** 2 
    321321    else: 
    322         raise ValueError, "cannot compute this error" 
     322        raise ValueError("cannot compute this error") 
    323323 
    324324    return math.sqrt(math.fabs(err)) 
     
    335335        msg = "Transformation does not accept point" 
    336336        msg += " that are consistent with zero." 
    337         raise ValueError, msg 
     337        raise ValueError(msg) 
    338338    if x > 0 and y > 0: 
    339339        if dx is None: 
     
    343343        err = (2.0 * dx / x) ** 2 + (dy / y) ** 2 
    344344    else: 
    345         raise ValueError, "cannot compute this error" 
     345        raise ValueError("cannot compute this error") 
    346346    return math.sqrt(math.fabs(err)) 
    347347 
     
    357357        err = dx / x ** 2 
    358358    else: 
    359         raise ValueError, "Cannot compute this error" 
     359        raise ValueError("Cannot compute this error") 
    360360    return math.fabs(err) 
    361361 
     
    371371        err = -1 / 2 * math.pow(x, -3.0 / 2.0) * dx 
    372372    else: 
    373         raise ValueError, "Cannot compute this error" 
     373        raise ValueError("Cannot compute this error") 
    374374    return math.fabs(err) 
    375375 
     
    387387        msg = "Transformation does not accept point " 
    388388        msg += " that are consistent with zero." 
    389         raise ValueError, msg 
     389        raise ValueError(msg) 
    390390    if dx is None: 
    391391        dx = 0 
Note: See TracChangeset for help on using the changeset viewer.