(self)
| 151 | return self._no_dereference_context_local > 0 |
| 152 | |
| 153 | def _incr_no_dereference_context(self): |
| 154 | self._thread_local_storage.no_dereference_context = ( |
| 155 | self._no_dereference_context_local + 1 |
| 156 | ) |
| 157 | |
| 158 | def _decr_no_dereference_context(self): |
| 159 | self._thread_local_storage.no_dereference_context = ( |
no outgoing calls
no test coverage detected