use the new threading properties for multiprocessing (reviewed by Jesse #3927)

This commit is contained in:
Benjamin Peterson 2008-09-22 21:11:43 +00:00
parent 41c56b5ea1
commit ffb3cca39b
1 changed files with 0 additions and 6 deletions

View File

@ -54,12 +54,6 @@ class DummyProcess(threading.Thread):
else:
return None
is_alive = threading.Thread.is_alive.im_func
get_name = threading.Thread.getName.im_func
set_name = threading.Thread.setName.im_func
is_daemon = threading.Thread.isDaemon.im_func
set_daemon = threading.Thread.setDaemon.im_func
#
#
#