summaryrefslogtreecommitdiff
path: root/Lib/dummy_thread.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-06-04 23:52:47 +0000
committerTim Peters <tim.peters@gmail.com>2006-06-04 23:52:47 +0000
commit28eeefe566d77cd3af3d675c4f2216c5033fe538 (patch)
tree7fec63fcf38c5dbe611860fb74e8c49206d2e581 /Lib/dummy_thread.py
parentc7d14452a4ed303d38498cc16c3cfc0beed9b843 (diff)
downloadcpython-git-28eeefe566d77cd3af3d675c4f2216c5033fe538.tar.gz
Revert revisions:
46640 Patch #1454481: Make thread stack size runtime tunable. 46647 Markup fix The first is causing many buildbots to fail test runs, and there are multiple causes with seemingly no immediate prospects for repairing them. See python-dev discussion. Note that a branch can (and should) be created for resolving these problems, like svn copy svn+ssh://svn.python.org/python/trunk -r46640 svn+ssh://svn.python.org/python/branches/NEW_BRANCH followed by merging rev 46647 to the new branch.
Diffstat (limited to 'Lib/dummy_thread.py')
-rw-r--r--Lib/dummy_thread.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/dummy_thread.py b/Lib/dummy_thread.py
index 7c26f9e5ef..21fd03f27f 100644
--- a/Lib/dummy_thread.py
+++ b/Lib/dummy_thread.py
@@ -20,7 +20,6 @@ __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock',
'interrupt_main', 'LockType']
import traceback as _traceback
-import warnings
class error(Exception):
"""Dummy implementation of thread.error."""
@@ -76,13 +75,6 @@ def allocate_lock():
"""Dummy implementation of thread.allocate_lock()."""
return LockType()
-def stack_size(size=None):
- """Dummy implementation of thread.stack_size()."""
- if size is not None:
- msg = "setting thread stack size not supported on this platform"
- warnings.warn(msg, RuntimeWarning)
- return 0
-
class LockType(object):
"""Class implementing dummy implementation of thread.LockType.