(self)
| 124 | return repr(obj) |
| 125 | |
| 126 | def __bool__(self): |
| 127 | try: |
| 128 | return bool(self._get_current_object()) |
| 129 | except RuntimeError: # pragma: no cover |
| 130 | return False |
| 131 | |
| 132 | __nonzero__ = __bool__ # Py2 |
| 133 |
nothing calls this directly
no test coverage detected