Lines Matching refs:_note
64 def _note(self, format, *args): member in _Verbose
82 def _note(self, *args): member in _Verbose
172 self._note("%s.acquire(%s): recursive success", self, blocking)
179 self._note("%s.acquire(%s): initial success", self, blocking)
182 self._note("%s.acquire(%s): failure", self, blocking)
210 self._note("%s.release(): final release", self)
213 self._note("%s.release(): non-final release", self)
226 self._note("%s._acquire_restore()", self)
230 self._note("%s._release_save()", self)
342 self._note("%s.wait(): got it", self)
362 self._note("%s.wait(%s): timed out", self, timeout)
369 self._note("%s.wait(%s): got it", self, timeout)
389 self._note("%s.notify(): no waiters", self)
391 self._note("%s.notify(): notifying %d waiter%s", self, n,
466 self._note("%s.acquire(%s): blocked waiting, value=%s",
472 self._note("%s.acquire: success, value=%s",
489 self._note("%s.release: success, value=%s",
732 self._note("%s.start(): starting thread", self)
791 self._note("%s.__bootstrap(): thread started", self)
794 self._note("%s.__bootstrap(): registering trace hook", self)
797 self._note("%s.__bootstrap(): registering profile hook", self)
804 self._note("%s.__bootstrap(): raised SystemExit", self)
807 self._note("%s.__bootstrap(): unhandled exception", self)
840 self._note("%s.__bootstrap(): normal return", self)
935 self._note("%s.join(): waiting until thread stops", self)
942 self._note("%s.join(): thread stopped", self)
949 self._note("%s.join(): timed out", self)
954 self._note("%s.join(): thread stopped", self)
1096 self._note("%s: waiting for other threads", self)
1101 self._note("%s: exiting", self)
1254 self._note("put(%s): queue full", item)
1257 self._note("put(%s): appended, length now %d",
1265 self._note("get(): queue empty")
1268 self._note("get(): got %s, %d left", item, len(self.queue))