(self)
| 607 | pass |
| 608 | |
| 609 | def default_cursor(self): |
| 610 | if self.__cursor is None: |
| 611 | self.__cursor = self.__open_single_cursor(user=self.__user) |
| 612 | return self.__cursor |
| 613 | |
| 614 | def connect(self): |
| 615 | host, port = split_host_port(self.__host_port) |
no test coverage detected