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

Lines Matching defs:daemon

709         return current_thread().daemon
719 status += " daemon"
770 # happen when a daemon thread wakes up at an unfortunate
1007 def daemon(self):
1008 """A boolean value indicating whether this thread is a daemon thread (True) or not (False).
1012 main thread is not a daemon thread and therefore all threads created in
1013 the main thread default to daemon = False.
1015 The entire Python program exits when no alive non-daemon threads are
1022 @daemon.setter
1023 def daemon(self, daemonic):
1027 raise RuntimeError("cannot set daemon status of active thread");
1031 return self.daemon
1034 self.daemon = daemonic
1113 if not t.daemon and t.is_alive():
1123 # They are marked as daemon threads so we won't wait for them