Ignore:
Timestamp:
02/12/19 06:10:51 (6 years ago)
Author:
bdef
Message:

CHG: shifting to py3 version of python interface (py2 compatible)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/plotoptions.py

    r23563 r23716  
    2323                if self.list:
    2424                        s+="    list: (%ix%i)\n" % (len(self.list),2)
    25                         for item in self.list.iteritems():
     25                        for item in list(self.list.items()):
    2626                                #s+="   options of plot number %i\n" % item
    27                                 if   isinstance(item[1],(str,unicode)):
     27                                if   isinstance(item[1],str):
    2828                                        s+="    field: %-10s value: '%s'\n" % (item[0],item[1])
    29                                 elif isinstance(item[1],(bool,int,long,float)):
     29                                elif isinstance(item[1],(bool,int,float)):
    3030                                        s+="    field: %-10s value: '%g'\n" % (item[0],item[1])
    3131                                else:
     
    4242                #go through args and build list (like pairoptions)
    4343                rawoptions=pairoptions.pairoptions(*arg)
    44                 numoptions=len(arg)/2
     44                numoptions=int(len(arg)/2)
    4545                rawlist=[] # cannot be a dict since they do not support duplicate keys
    4646
    47                 for i in xrange(numoptions):
    48                         if isinstance(arg[2*i],(str,unicode)):
     47                for i in range(numoptions):
     48                        if isinstance(arg[2*i],str):
    4949                                rawlist.append([arg[2*i],arg[2*i+1]])
    5050                        else:
    5151                                #option is not a string, ignore it
    52                                 print "WARNING: option number %d is not a string and will be ignored." % (i+1)
     52                                print(("WARNING: option number %d is not a string and will be ignored." % (i+1)))
    5353
    5454                #get figure number
     
    6868                #initialize self.list (will need a list of dict's (or nested dict) for numberofplots>1)
    6969                #self.list=defaultdict(dict)
    70                 for i in xrange(numberofplots):
     70                for i in range(numberofplots):
    7171                        self.list[i]=pairoptions.pairoptions()
    7272
    7373                #process plot options
    74                 for i in xrange(len(rawlist)):
     74                for i in range(len(rawlist)):
    7575
    7676                        #if alloptions flag is on, apply to all plots
    7777                        if (allflag and 'data' not in rawlist[i][0] and '#' not in rawlist[i][0]):
    7878
    79                                 for j in xrange(numberofplots):
     79                                for j in range(numberofplots):
    8080                                        self.list[j].addfield(rawlist[i][0],rawlist[i][1])
    8181
     
    8888
    8989                                #loop over plotnums
    90                                 for k in xrange(len(plotnums)):
     90                                for k in range(len(plotnums)):
    9191                                        plotnum=plotnums[k]
    9292
     
    9696                                        # '#all'
    9797                                        elif 'all' in plotnum:
    98                                                 for j in xrange(numberofplots):
     98                                                for j in range(numberofplots):
    9999                                                        self.list[j].addfield(field,rawlist[i][1])
    100100
     
    105105                                                if False in [x.isdigit() for x in nums]:
    106106                                                        raise ValueError('error: in option i-j both i and j must be integers')
    107                                                 for j in xrange(int(nums[0])-1,int(nums[1])):
     107                                                for j in range(int(nums[0])-1,int(nums[1])):
    108108                                                        self.list[j].addfield(field,rawlist[i][1])
    109109
     
    125125                                                j=j+1
    126126                                if j+1>numberofplots:
    127                                         print "WARNING: too many instances of '%s' in options" % rawlist[i][0]
     127                                        print(("WARNING: too many instances of '%s' in options" % rawlist[i][0]))
    128128        #}}}
Note: See TracChangeset for help on using the changeset viewer.