CloneSet253


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
9210.995stmt_list[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19423
Bio/UniGene/__init__.py
29456
Bio/UniGene/__init__.py
Clone Instance
1
Line Count
9
Source Line
423
Source File
Bio/UniGene/__init__.py

    def _init_from_text(self,text): 
         parts = text.split("; "); 

         for part in parts: 
              key,val = re.match("(\\w+)=(\\S+)",part).groups( ) 
              setattr(self,key.lower( ),val) 
         

    def __repr__(self): 
         return self.text 


Clone Instance
2
Line Count
9
Source Line
456
Source File
Bio/UniGene/__init__.py

    def _init_from_text(self,text): 
         parts = text.split(" "); 

         for part in parts: 
              key,val = re.match("(\\w+)=(\\S+)",part).groups( ) 
              setattr(self,key.lower( ),val) 
         

    def __repr__(self): 
         return self.text 


Clone AbstractionParameter Count: 1Parameter Bindings

def _init_from_text(self,text):
  parts = text.split( [[#variable75411560]]); 
  for part in parts:
  
    key,val = re.match("(\\w+)=(\\S+)",part).groups( ) 
    setattr(self,key.lower( ),val) 
  

def __repr__(self):
  return self.text 
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#75411560]]
"; " 
12[[#75411560]]
" "