Home | History | Annotate | Download | only in python2.7

Lines Matching defs:_note

63         def _note(self, format, *args):
81 def _note(self, *args):
171 self._note("%s.acquire(%s): recursive success", self, blocking)
178 self._note("%s.acquire(%s): initial success", self, blocking)
181 self._note("%s.acquire(%s): failure", self, blocking)
209 self._note("%s.release(): final release", self)
212 self._note("%s.release(): non-final release", self)
225 self._note("%s._acquire_restore()", self)
229 self._note("%s._release_save()", self)
341 self._note("%s.wait(): got it", self)
361 self._note("%s.wait(%s): timed out", self, timeout)
368 self._note("%s.wait(%s): got it", self, timeout)
388 self._note("%s.notify(): no waiters", self)
390 self._note("%s.notify(): notifying %d waiter%s", self, n,
465 self._note("%s.acquire(%s): blocked waiting, value=%s",
471 self._note("%s.acquire: success, value=%s",
488 self._note("%s.release: success, value=%s",
739 self._note("%s.start(): starting thread", self)
798 self._note("%s.__bootstrap(): thread started", self)
801 self._note("%s.__bootstrap(): registering trace hook", self)
804 self._note("%s.__bootstrap(): registering profile hook", self)
811 self._note("%s.__bootstrap(): raised SystemExit", self)
814 self._note("%s.__bootstrap(): unhandled exception", self)
847 self._note("%s.__bootstrap(): normal return", self)
942 self._note("%s.join(): waiting until thread stops", self)
949 self._note("%s.join(): thread stopped", self)
956 self._note("%s.join(): timed out", self)
961 self._note("%s.join(): thread stopped", self)
1103 self._note("%s: waiting for other threads", self)
1108 self._note("%s: exiting", self)
1261 self._note("put(%s): queue full", item)
1264 self._note("put(%s): appended, length now %d",
1272 self._note("get(): queue empty")
1275 self._note("get(): got %s, %d left", item, len(self.queue))