CloneSet81


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
30210.998stmt_list[10]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1301342
Bio/GenBank/__init__.py
23062
Bio/PubMed.py
Clone Instance
1
Line Count
30
Source Line
1342
Source File
Bio/GenBank/__init__.py

    def __len__(self): 
         raise NotImplementedError("GenBank contains lots of entries") 

    def clear(self): 
         raise NotImplementedError("This is a read-only dictionary") 

    def __setitem__(self,key,item):  
        raise NotImplementedError("This is a read-only dictionary") 

    def update(self): 
         raise NotImplementedError("This is a read-only dictionary") 

    def copy(self): 
         raise NotImplementedError("You don't need to do this...") 

    def keys(self): 
         raise NotImplementedError("You don't really want to do this...") 

    def items(self): 
         raise NotImplementedError("You don't really want to do this...") 

    def values(self): 
         raise NotImplementedError("You don't really want to do this...") 

    def has_key(self,id): 
        "S.has_key(id) -> bool" 
        try :
            
            self[id] 
        except KeyError: 
             return 0 
        return 1 

    def get(self,id,failobj = None): 
         try :
             
             return self[id] 
         except KeyError: 
              return failobj 
         


Clone Instance
2
Line Count
30
Source Line
62
Source File
Bio/PubMed.py

    def __len__(self): 
         raise NotImplementedError("PubMed contains lots of entries") 

    def clear(self): 
         raise NotImplementedError("This is a read-only dictionary") 

    def __setitem__(self,key,item):  
        raise NotImplementedError("This is a read-only dictionary") 

    def update(self): 
         raise NotImplementedError("This is a read-only dictionary") 

    def copy(self): 
         raise NotImplementedError("You don't need to do this...") 

    def keys(self): 
         raise NotImplementedError("You don't really want to do this...") 

    def items(self): 
         raise NotImplementedError("You don't really want to do this...") 

    def values(self): 
         raise NotImplementedError("You don't really want to do this...") 

    def has_key(self,id): 
        "S.has_key(id) -> bool" 
        try :
            
            self[id] 
        except KeyError: 
             return 0 
        return 1 

    def get(self,id,failobj = None): 
         try :
             
             return self[id] 
         except KeyError: 
              return failobj 
         


Clone AbstractionParameter Count: 1Parameter Bindings

def __len__(self):
  raise NotImplementedError( [[#variable600acea0]]) 

def clear(self):
  raise NotImplementedError("This is a read-only dictionary") 

def __setitem__(self,key,item):
  raise NotImplementedError("This is a read-only dictionary") 

def update(self):
  raise NotImplementedError("This is a read-only dictionary") 

def copy(self):
  raise NotImplementedError("You don't need to do this...") 

def keys(self):
  raise NotImplementedError("You don't really want to do this...") 

def items(self):
  raise NotImplementedError("You don't really want to do this...") 

def values(self):
  raise NotImplementedError("You don't really want to do this...") 

def has_key(self,id):
  "S.has_key(id) -> bool" 
  try :
  
    self[id] 
  except KeyError:
  
    return 0 
  return 1 

def get(self,id,failobj = None):
  try :
  
    return self[id] 
  except KeyError:
  
    return failobj 
  
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#600acea0]]
"GenBank contains lots of entries" 
12[[#600acea0]]
"PubMed contains lots of entries"