(self, type, value, traceback)
| 1191 | return self.connection, self.name |
| 1192 | |
| 1193 | def __exit__(self, type, value, traceback): |
| 1194 | self.connection.close() |
| 1195 | drop_database(self.maintenance_connection, self.name) |
| 1196 | |
| 1197 | |
| 1198 | def get_timezone_without_dst(connection): |
nothing calls this directly
no test coverage detected