]> granicus.if.org Git - python/commit
Issue #6064: Add a `daemon` keyword argument to the threading.Thread
authorAntoine Pitrou <solipsis@pitrou.net>
Fri, 25 Feb 2011 22:07:43 +0000 (22:07 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Fri, 25 Feb 2011 22:07:43 +0000 (22:07 +0000)
commit0bd4deba383b1c7f05a4e0c94f1d4b96050a1308
treefd95fcfc38af8fceb8e56409f63e4e2bd30e0c52
parent4bc685752f9f1056545ab121db833a4a68dd794c
Issue #6064: Add a `daemon` keyword argument to the threading.Thread
and multiprocessing.Process constructors in order to override the
default behaviour of inheriting the daemonic property from the current
thread/process.
Doc/library/multiprocessing.rst
Doc/library/threading.rst
Lib/multiprocessing/process.py
Lib/test/test_multiprocessing.py
Lib/test/test_threading.py
Lib/threading.py
Misc/NEWS