CloneSet378


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11220.970stmt_list[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111181
BioSQL/BioSeqDatabase.py
211206
BioSQL/BioSeqDatabase.py
Clone Instance
1
Line Count
11
Source Line
181
Source File
BioSQL/BioSeqDatabase.py

    def commit(self): 
         "Commits the current transaction to the database." 
         return self.adaptor.commit( ) 

    def rollback(self): 
         "Rolls backs the current transaction." 
         return self.adaptor.rollback( ) 

    def close(self): 
         "Close the connection. No further activity possible." 
         return self.adaptor.close( ) 


Clone Instance
2
Line Count
11
Source Line
206
Source File
BioSQL/BioSeqDatabase.py

    def commit(self): 
         "Commits the current transaction." 
         return self.conn.commit( ) 

    def rollback(self): 
         "Rolls backs the current transaction." 
         return self.conn.rollback( ) 

    def close(self): 
         "Close the connection. No further activity possible." 
         return self.conn.close( ) 


Clone AbstractionParameter Count: 2Parameter Bindings

def commit(self):
   [[#variable60137680]]
  return self. [[#variable5c76ee20]].commit( ) 

def rollback(self):
  "Rolls backs the current transaction." 
  return self. [[#variable5c76ee20]].rollback( ) 

def close(self):
  "Close the connection. No further activity possible." 
  return self. [[#variable5c76ee20]].close( ) 
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#60137680]]
"Commits the current transaction to the database." 
12[[#60137680]]
"Commits the current transaction." 
21[[#5c76ee20]]
adaptor 
22[[#5c76ee20]]
conn