(self, connection_pool)
| 895 | command_re = re.compile(r'"(.*?)(?<!\\)"') |
| 896 | |
| 897 | def __init__(self, connection_pool): |
| 898 | self.connection_pool = connection_pool |
| 899 | self.connection = self.connection_pool.get_connection() |
| 900 | |
| 901 | def __enter__(self): |
| 902 | self._start_monitor() |
nothing calls this directly
no test coverage detected