(self)
| 85 | self._notify(requestId, frame) |
| 86 | |
| 87 | def _shutdown(self): |
| 88 | with self._lock: |
| 89 | if self._closing: |
| 90 | return |
| 91 | self.put(self._writeSentinel, request=False) |
| 92 | self._closing = True |
| 93 | |
| 94 | class Writer(object): |
| 95 | SENTINEL = None |
no test coverage detected