From: Benjamin Peterson Date: Mon, 22 Sep 2008 21:11:43 +0000 (+0000) Subject: use the new threading properties for multiprocessing (reviewed by Jesse #3927) X-Git-Tag: v2.6~51 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ffb3cca39bcaeac8893e223618c51f1497f88ec3;p=thirdparty%2FPython%2Fcpython.git use the new threading properties for multiprocessing (reviewed by Jesse #3927) --- diff --git a/Lib/multiprocessing/dummy/__init__.py b/Lib/multiprocessing/dummy/__init__.py index 73bf21820f1a..30b1b20f56af 100644 --- a/Lib/multiprocessing/dummy/__init__.py +++ b/Lib/multiprocessing/dummy/__init__.py @@ -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 - # # #