(self)
| 54 | self.new_connection = connection.copy() |
| 55 | |
| 56 | def tearDown(self): |
| 57 | try: |
| 58 | self.end_blocking_transaction() |
| 59 | except (DatabaseError, AttributeError): |
| 60 | pass |
| 61 | self.new_connection.close() |
| 62 | |
| 63 | def start_blocking_transaction(self): |
| 64 | self.new_connection.set_autocommit(False) |
nothing calls this directly
no test coverage detected