benjamin.peterson
2008-09-22 21:17:49 UTC
Author: benjamin.peterson
Date: Mon Sep 22 23:17:49 2008
New Revision: 66558
Log:
Merged revisions 66557 via svnmerge from
svn+ssh://pythondev at 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)
........
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Lib/multiprocessing/dummy/__init__.py
Modified: python/branches/py3k/Lib/multiprocessing/dummy/__init__.py
==============================================================================
--- python/branches/py3k/Lib/multiprocessing/dummy/__init__.py (original)
+++ python/branches/py3k/Lib/multiprocessing/dummy/__init__.py Mon Sep 22 23:17:49 2008
@@ -54,12 +54,6 @@
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
-
#
#
#
Date: Mon Sep 22 23:17:49 2008
New Revision: 66558
Log:
Merged revisions 66557 via svnmerge from
svn+ssh://pythondev at 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)
........
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Lib/multiprocessing/dummy/__init__.py
Modified: python/branches/py3k/Lib/multiprocessing/dummy/__init__.py
==============================================================================
--- python/branches/py3k/Lib/multiprocessing/dummy/__init__.py (original)
+++ python/branches/py3k/Lib/multiprocessing/dummy/__init__.py Mon Sep 22 23:17:49 2008
@@ -54,12 +54,6 @@
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
-
#
#
#