Changeset 32c0841 in sasview for guiframe/utils.py


Ignore:
Timestamp:
Nov 23, 2010 11:21:20 AM (14 years ago)
Author:
Gervaise Alina <gervyh@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
a54e4be
Parents:
4a2b054
Message:

working on pylint

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guiframe/utils.py

    rd955bf19 r32c0841  
    22Contains common classes and functions 
    33""" 
    4 import wx,re 
     4import wx 
     5import re 
    56 
    67def format_number(value, high=False): 
     
    1112        value = float(value) 
    1213    except: 
    13         output="NaN" 
     14        output = "NaN" 
    1415        return output.lstrip().rstrip() 
    15      
    1616    if high: 
    17         output= "%-6.4g" % value 
    18          
     17        output = "%-6.4g" % value 
    1918    else: 
    20         output= "%-5.3g" % value 
     19        output = "%-5.3g" % value 
    2120    return output.lstrip().rstrip() 
    2221 
     
    2524    :param item: txtcrtl containing a value 
    2625    """ 
    27     flag= True 
     26    flag = True 
    2827    try: 
    2928        mini = float(item.GetValue()) 
     
    6160     
    6261    """ 
    63     list=[] 
     62    list = [] 
    6463    for item in mylist: 
    65         if re.search( separator,item)!=None: 
    66             if n >0: 
    67                 word =re.split(separator,item,int(n)) 
     64        if re.search(separator,item)!= None: 
     65            if n > 0: 
     66                word = re.split(separator, item, int(n)) 
    6867            else: 
    69                 word =re.split( separator,item) 
     68                word = re.split(separator, item) 
    7069            for new_item in word:  
    71                 if new_item.lstrip().rstrip() !='': 
     70                if new_item.lstrip().rstrip() != '': 
    7271                    list.append(new_item.lstrip().rstrip()) 
    7372    return list 
     
    8079     
    8180    """ 
    82     list=[] 
    83     if re.search( separator,string1)!=None: 
    84         if n >0: 
    85             word =re.split(separator,string1,int(n)) 
     81    list = [] 
     82    if re.search(separator, string1) is not None: 
     83        if n > 0: 
     84            word = re.split(separator,string1,int(n)) 
    8685        else: 
    87             word =re.split(separator,string1) 
     86            word = re.split(separator,string1) 
    8887        for item in word:  
    89             if item.lstrip().rstrip() !='': 
     88            if item.lstrip().rstrip() != '': 
    9089                list.append(item.lstrip().rstrip()) 
    9190    return list 
     
    104103      
    105104    """ 
    106     begin_flag= False 
    107     end_flag= False 
    108     if  re.search( begin,string1)!=None: 
    109         begin_flag= True 
    110     if end !=None: 
    111         if  re.search(end,string1)!=None: 
    112             end_flag= True 
     105    begin_flag = False 
     106    end_flag = False 
     107    if  re.search(begin,string1) is not None: 
     108        begin_flag = True 
     109    if end  is not None: 
     110        if  re.search(end,string1) is not None: 
     111            end_flag = True 
    113112    return begin_flag, end_flag 
     113 
Note: See TracChangeset for help on using the changeset viewer.