(self)
| 132 | __nonzero__ = __bool__ # Py2 |
| 133 | |
| 134 | def __dir__(self): |
| 135 | try: |
| 136 | return dir(self._get_current_object()) |
| 137 | except RuntimeError: # pragma: no cover |
| 138 | return [] |
| 139 | |
| 140 | def __getattr__(self, name): |
| 141 | if name == '__members__': |
nothing calls this directly
no test coverage detected