Atomically decrement the counter by num and return the new value
(self, num=1)
| 15 | return self._value |
| 16 | |
| 17 | def dec(self, num=1): |
| 18 | """Atomically decrement the counter by num and return the new value""" |
| 19 | with self._lock: |
| 20 | self._value -= num |
| 21 | return self._value |
| 22 | |
| 23 | @property |
| 24 | def value(self): |
nothing calls this directly
no outgoing calls
no test coverage detected