(self, db_name)
| 618 | user_name=self._user_name, password=self._password, db_name=db_name, **kwargs) |
| 619 | |
| 620 | def clone(self, db_name): |
| 621 | return self._clone(db_name) |
| 622 | |
| 623 | def __getattr__(self, attr): |
| 624 | if attr == "_conn": |
no test coverage detected