]> granicus.if.org Git - python/commitdiff
Merged revisions 66557 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Mon, 22 Sep 2008 21:17:49 +0000 (21:17 +0000)
committerBenjamin Peterson <benjamin@python.org>
Mon, 22 Sep 2008 21:17:49 +0000 (21:17 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r66557 | benjamin.peterson | 2008-09-22 16:11:43 -0500 (Mon, 22 Sep 2008) | 1 line

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

Lib/multiprocessing/dummy/__init__.py

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