(self)
| 1066 | def release(self): |
| 1067 | return self._callmethod('release') |
| 1068 | def locked(self): |
| 1069 | return self._callmethod('locked') |
| 1070 | def __enter__(self): |
| 1071 | return self._callmethod('acquire') |
| 1072 | def __exit__(self, exc_type, exc_val, exc_tb): |
nothing calls this directly
no test coverage detected