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

Lines Matching defs:join

651     # allowing .join() to return.
866 # notify anyway (join() is forbidden on them).
909 def join(self, timeout=None):
912 This blocks the calling thread until the thread whose join() method is
918 (or fractions thereof). As join() always returns None, you must call
919 isAlive() after join() to decide whether a timeout happened -- if the
920 thread is still alive, the join() call timed out.
925 A thread can be join()ed many times.
927 join() raises a RuntimeError if an attempt is made to join the current
928 thread as that would cause a deadlock. It is also an error to join() a
936 raise RuntimeError("cannot join thread before it is started")
938 raise RuntimeError("cannot join current thread")
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)
1105 t.join()
1144 def join(self, timeout=None):
1145 assert False, "cannot join a dummy thread"
1325 t.join()
1326 C.join()