(self)
| 657 | self.has_pooling = self.keywords.pop("pooling", True) and self.has_pooling |
| 658 | |
| 659 | def _getctx(self): |
| 660 | if not self._ctx.get("db"): |
| 661 | self._load_context(self._ctx) |
| 662 | return self._ctx |
| 663 | |
| 664 | ctx = property(_getctx) |
| 665 |
nothing calls this directly
no test coverage detected