(self, **options)
| 132 | IN_MATCH = f"decode(%s, 'hex')" |
| 133 | |
| 134 | def __init__(self, **options): |
| 135 | super().__init__() |
| 136 | self.cursor = cursor_factory(**options) |
| 137 | self._options = options |
| 138 | |
| 139 | def after_fork(self) -> None: |
| 140 | # Clear the cursor cache, we don't want any stale connections from |
nothing calls this directly
no test coverage detected