diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-22 21:17:49 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-22 21:17:49 (GMT) |
commit | 07317b12f3a5658cbb45dd52364e6be7aeb84b3d (patch) | |
tree | cc3d388928841d71a675cd7c40685fe7c2c53b36 /Lib | |
parent | 4561257c34f2966af31c7f9930ae04e775e5ee3d (diff) | |
download | cpython-07317b12f3a5658cbb45dd52364e6be7aeb84b3d.zip cpython-07317b12f3a5658cbb45dd52364e6be7aeb84b3d.tar.gz cpython-07317b12f3a5658cbb45dd52364e6be7aeb84b3d.tar.bz2 |
Merged revisions 66557 via svnmerge from
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)
........
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/multiprocessing/dummy/__init__.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/multiprocessing/dummy/__init__.py b/Lib/multiprocessing/dummy/__init__.py index da18877..0c8a6ab 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 - get_name = threading.Thread.getName - set_name = threading.Thread.setName - is_daemon = threading.Thread.isDaemon - set_daemon = threading.Thread.setDaemon - # # # |