]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
use the new threading properties for multiprocessing (reviewed by Jesse #3927)
authorBenjamin Peterson <benjamin@python.org>
Mon, 22 Sep 2008 21:11:43 +0000 (21:11 +0000)
committerBenjamin Peterson <benjamin@python.org>
Mon, 22 Sep 2008 21:11:43 +0000 (21:11 +0000)
Lib/multiprocessing/dummy/__init__.py

index 73bf21820f1a1106cab2df655ce4857edc1cce95..30b1b20f56af2f690811398a9e7226a6dbb48f64 100644 (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
-
 #
 #
 #