Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
30 | 2 | 1 | 0.998 | stmt_list[10] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 30 | 1342 | Bio/GenBank/__init__.py |
2 | 30 | 62 | Bio/PubMed.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 |
| ||||
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 |
| |||
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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#600acea0]] | "GenBank contains lots of entries" |
1 | 2 | [[#600acea0]] | "PubMed contains lots of entries" |